-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
50 lines (50 loc) · 1.33 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
module.exports = {
// Uncomment the line below to enable the experimental Just-in-Time ("JIT") mode.
// https://tailwindcss.com/docs/just-in-time-mode
// mode: "jit",
theme: {
extend: {
gridTemplateRows: {
'store-section': '100px repeat(2, minmax(0, 1fr)) 100px'
},
colors: {
'primary': 'hsl(175, 68%, 30%)',
'greenfade': 'rgba(24, 129, 120, 0.15)',
}
},
fontFamily: {
'oswald': ['Oswald', 'ui-sans-serif', 'sans-serif'],
'montserrat': ['Montserrat', 'ui-sans-serif', 'sans-serif'],
'roboto': ['Roboto', 'ui-sans-serif', 'sans-serif'],
'tomorrow': ['Tomorrow', 'ui-sans-serif', 'sans-serif'],
'open-sans': ['Open Sans', 'ui-sans-serif', 'sans-serif'],
},
},
variants: {
extend: {
opacity: ['disabled'],
width: ['hover', 'group-hover'],
textAlign: ['group-hover'],
alignSelf: ['group-hover'],
display: ['group-hover'],
margin: ['group-hover'],
}
},
plugins: [],
purge: {
// Filenames to scan for classes
content: [
"./src/**/*.html",
"./src/**/*.js",
"./src/**/*.jsx",
"./src/**/*.ts",
"./src/**/*.tsx",
"./public/index.html",
],
// Options passed to PurgeCSS
options: {
// Whitelist specific selectors by name
// safelist: [],
},
},
};