-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
48 lines (48 loc) · 1.16 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
module.exports = {
mode: "jit",
importance: true,
purge: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
gridTemplateColumns: {
"autoFit": "repeat(auto-fit, minmax(15rem, 1fr))",
},
},
colors: {
transparent: "transparent",
blue: {
light: "#e8f5ff",
lighter: "#abd6f7",
DEFAULT: "#0c90f5",
},
green: {
DEFAULT: "#0feb0c",
},
white: {
DEFAULT: "#fff",
primary: "#eceff1",
},
red: {
light: "#faa2b0",
DEFAULT: "#f00",
primary: "#ff0266",
},
black: {
// overlay: "rgba(0, 0, 0, 0.8)",
DEFAULT: "#000",
primary: "#222222",
},
orange: {
DEFAULT: "#f09022",
},
},
},
variants: {
extend: {},
},
plugins: [],
};