-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.cjs
38 lines (38 loc) · 918 Bytes
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/*.{tsx,mustache}'
],
future: {
disableColorOpacityUtilitiesByDefault: true
},
theme: {
container: {
center: true,
padding: '2rem',
},
extend: {
width: {
'sm': '24rem'
},
colors: {
grey: {
'100': '#f5f5f5',
'200': '#eeeeee',
'300': '#e0e0e0',
'400': '#bdbdbd',
'500': '#9e9e9e',
'600': '#757575',
'700': '#616161',
'800': '#424242',
'900': '#212121',
},
},
}
},
variants: {},
plugins: [],
experimental: {
optimizeUniversalDefaults: true
},
}