-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
65 lines (65 loc) · 1.29 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
module.exports = {
purge: [
'./components/**/*.{vue,js}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./nuxt.config.{js,ts}'
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
blue: {
200: '#5FBCFA',
400: '#18A0FB',
500: '#0F90E7'
},
dark: {
900: '#2D393D'
},
gray: {
50: '#F5F6F6',
100: '#E1E8ED',
200: '#CCD6DD',
300: '#66757F',
900: '#66757F'
},
green: {
200: '#B1F25D',
300: '#84DB15',
400: '#67B405'
},
purple: {
200: '#C177FC',
300: '#9718FB',
400: '#760BCB'
},
red: {
400: '#FF5656'
},
yellow: {
200: '#FFDE68',
300: '#FBC918',
400: '#DCAD05'
},
white: '#FFFFFF'
},
fontSize: {
tiny: '0.65rem'
},
borderRadius: {
base: '20px'
},
boxShadow: {
base: '0 4px 4px rgba(0, 0, 0, 0.25)'
}
}
},
variants: {
extend: {
fontWeight: ['group-hover']
}
},
plugins: []
}