-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
36 lines (36 loc) · 1003 Bytes
/
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
module.exports = {
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
"primary-lightest": "#F6FAF0",
"primary-lighter": "#D4E4B4",
"primary-light": "#B2CF77",
"primary": "#8EB540",
"primary-darkest": "#181F0A",
"primary-dark": "#5F792A",
"secondary-lightest": "#B1AFD4",
"secondary-lighter": "#7D7AB8",
"secondary-light": "#524F92",
"secondary": "#35335E",
"secondary-dark": "#1E1D35",
"secondary-darker": "#0C0A2D",
"warning": "#FF8800",
"danger": "#CC0000",
"dark": "#191919",
"light": "#F5F6FA",
"primary-darker": "#2F3C15",
"secondary-darkest": "#0F0E1A",
"positive": "#007E33",
},
gridTemplateRows: {
challenge: "auto auto auto",
},
},
variants: {
extend: {},
},
plugins: [],
},
};