-
Notifications
You must be signed in to change notification settings - Fork 9
/
tailwind.config.js
60 lines (56 loc) · 1.13 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
module.exports = {
content: [
'./index.html',
'./src/**/*.vue',
'./src/**/*.js',
'./src/**/*.ts'
],
theme: {
extend: {
fontFamily: {
sans: ['Source Sans Pro', 'ui-sans-serif', 'system-ui', 'sans-serif']
},
borderColor: {
DEFAULT: '#E0E0E0'
}
},
screens: {
xs: '480px',
sm: '640px',
md: '768px',
lg: '1024px'
},
colors: {
current: 'currentColor',
transparent: 'transparent',
black: '#1A1A1A',
white: '#FFFFFF',
gray: {
lightest: '#F2F2F2',
lighter: '#E6E6E6',
light: '#B3B3B3',
dark: '#808080',
darker: '#4D4D4D',
darkest: '#333333'
},
primary: '#6563FF',
cyan: '#29DCB6',
orange: '#FF684D',
yellow: '#FAC685',
success: '#00D455',
danger: '#FF5555',
warning: '#FF7F2A',
info: '#2A7FFF'
},
container: {
center: true,
padding: '1rem'
}
},
plugins: [
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/forms'),
require('@tailwindcss/typography')
],
darkMode: 'class'
}