-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
49 lines (48 loc) · 1.04 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
const colors = require('tailwindcss/colors')
module.exports = {
purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
colors: {
gray: colors.trueGray,
primary: colors.sky,
secondary: colors.teal,
bright: {
100: '#F5F5F5',
200: '#F0F0F0',
300: '#E6E6E6',
400: '#DEDEDE',
500: '#C6C6C6',
600: '#9A9A9A',
700: '#757575',
800: '#595959',
900: '#252525'
},
dim: {
100: '#DEDEDE',
200: '#9D9D9D',
300: '#5B5B5B',
400: '#565656',
500: '#3F3F3F',
600: '#333333',
700: '#2E2E2E',
800: '#292929',
900: '#1E1E1E'
},
},
gridTemplateColumns: {
'offset': 'minmax(100px, 1fr) 3fr',
}
},
},
variants: {
extend: {
opacity: ['disabled'],
backgroundColor: ['active'],
},
},
plugins: [
require('@tailwindcss/forms')
],
}