-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
49 lines (49 loc) · 1.11 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
module.exports = {
purge: { content: ['./public/**/*.html', './src/**/*.vue'] },
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
// colors specified as objects to allow for defining variants
'wut-yellow': {
DEFAULT: '#fed542',
},
'wut-orange': {
DEFAULT: '#ea7c5a',
},
'wut-purple': {
DEFAULT: '#965f77',
},
'wut-green': {
DEFAULT: '#6aba9c',
},
'wut-blue': {
DEFAULT: '#7896cf',
'50': '#eff5ff',
'100': '#d9e9fd',
'200': '#c3d6f3',
'300': '#a9c0e6',
'400': '#90aada',
'500': '#7896cf',
'600': '#6582ba',
'700': '#5470a6',
'800': '#405c90',
'900': '#2e497e',
},
'wut-gray': {
DEFAULT: '#b4a0aa',
},
'wut-black': {
DEFAULT: '#3c3c4c',
},
'wut-brown': {
DEFAULT: '#645a5a',
},
},
},
},
variants: {
extend: {},
},
plugins: [require('@tailwindcss/forms')],
}