-
Notifications
You must be signed in to change notification settings - Fork 17
/
tailwind.config.js
79 lines (78 loc) · 1.67 KB
/
tailwind.config.js
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
module.exports = {
mode: "jit",
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
darkMode: "media",
theme: {
extend: {
colors: {
// background: "hsl(0, 0%, 100%)",
background: "hsl(0, 0%, 98%)",
darkBackground: "hsl(224, 25%, 12%)",
code: "hsl(0, 0%, 93%)",
darkCode: "hsl(224, 25%, 8%)",
selection: "#FFAB7F",
},
textColor: {
primary: "hsl(0, 0%, 5%)",
secondary: "hsl(0, 0%, 23%)",
tertiary: "hsl(224, 6%, 48%)",
darkTertiary: "hsl(224, 25%, 56%)",
darkPrimary: "hsl(0, 0%, 100%)",
darkSecondary: "hsl(224, 25%, 80%)",
svg: "hsl(0, 0%, 98%)",
darkSVG: "hsl(224, 25%, 12%)",
},
gridTemplateColumns: {
"20-80": "60% 40%",
"118-auto": "118px auto",
auto: "auto",
},
gridColumn: {
1: "1",
},
gridRow: {
1: "1",
},
gridTemplateRows: {
auto: "auto",
},
height: {
400: "400px",
},
animation: {
enter: "enter 1s ease-out",
},
keyframes: {
enter: {
"0%": {
opacity: "0",
transform: "translateY(-4px)",
},
"100%": {
opacity: "1",
transform: "translateY(0)",
},
},
},
},
fontFamily: {
sans: ["Sohne", "sans-serif"],
},
maxWidth: {
"container-large": "612px",
"container-small": "92%",
256: "256px",
},
maxHeight: {
image: "200px",
256: "256px",
},
},
variants: {
extend: {},
},
plugins: [],
}