-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
72 lines (70 loc) · 1.52 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
module.exports = {
mode: "jit",
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: "media",
theme: {
extend: {
colors: {
background: "hsl(0, 0%, 97%)",
darkBackground: "hsl(240, 20%, 17%)",
code: "hsl(0, 0%, 93%)",
darkCode: "hsl(224, 25%, 8%)",
selection: "hsl(142, 98%, 78%)",
},
textColor: {
primary: "hsl(0, 0%, 3%)",
secondary: "hsl(0, 0%, 45%)",
tertiary: "hsl(243, 70%, 47%)",
darkTertiary: "hsl(100, 100%, 79%)",
darkPrimary: "hsl(0, 0%, 90%)",
darkSecondary: "hsl(100, 100%, 80%)",
},
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)",
},
},
},
},
maxWidth: {
"container-large": "612px",
"container-small": "92%",
256: "256px",
},
maxHeight: {
image: "200px",
256: "256px",
},
},
variants: {
extend: {},
backgroundColor: ['active']
},
plugins: [],
}