-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.cjs
58 lines (56 loc) · 1.32 KB
/
tailwind.config.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
fontFamily: {
avenir: ["Avenir", "sans-serif"],
"big-caslon": ["Big Caslon", "serif"],
sans: ["Avenir", "sans-serif", ...defaultTheme.fontFamily.sans],
},
colors: {
beige: {
300: "#F5F5EB",
400: "#F2E9DB",
},
brown: {
600: "#333333",
800: "#4F3939",
},
rock: {
100: "#D6D6D6",
200: "#8E8E8E",
700: "#474747",
},
carrot: {
200: "#EFCEBB",
400: "#EA8E56",
600: "#F97236",
},
},
keyframes: {
slide: {
from: { transform: "translateX(0)" },
to: { transform: "translateX(-100%)" },
},
},
animation: {
slide: "35s slide infinite linear",
},
fontSize: {
"12xl": "12rem",
"14xl": "14rem",
},
lineHeight: {
13: "3.5rem",
"3/5": 0.6,
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
},
},
},
plugins: [],
safelist: ["lg:text-white"],
};