-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
38 lines (37 loc) · 1.02 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
/*
* A tailwinds config file used to generate atomic utility css classes.
* See: https://tailwindcss.com/docs/configuration/
* Def: https://github.com/tailwindcss/tailwindcss/blob/master/stubs/defaultConfig.stub.js
*/
module.exports = {
purge: [
"./src/**/*.html",
"./src/**/*.js",
"./src/**/*.jsx",
"./src/**/*.ts",
"./src/**/*.tsx",
],
theme: {
extend: {
colors: {
"bg": "#121212",
"primary": "#212121",
"secondary": "#272727",
"navbar": "#2E2E2E",
"accent": "#7614F5",
"error": "#CF6679",
"success": "#1FDC98",
"warning": "#D5AC5C",
"subtle": "#464646"
}
},
},
variants: {
backgroundColor: ['hover', 'focus'],
textColor: ['hover', 'focus'],
borderColor: ['focus', 'hover'],
fontWeight:['hover', 'focus'],
padding:['hover', 'focus']
},
plugins: [],
}