-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
55 lines (55 loc) · 1.22 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
module.exports = {
content: ['./index.html', './src/**/*.{js,ts,vue}'],
theme: {
extend: {
borderColor: {
DEFAULT: 'var(--border-color)'
},
colors: {
primary: 'var(--primary-color)',
'skin-border': 'var(--border-color)',
'skin-text': 'var(--text-color)',
'skin-link': 'var(--link-color)',
'skin-bg': 'var(--bg-color)',
'skin-heading': 'var(--heading-color)',
blue: '#384aff',
green: '#21b66f',
red: '#ff3856'
},
animation: {
'pulse-fast': 'pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite'
}
},
screens: {
xs: '420px',
sm: '544px',
md: '768px',
lg: '1012px',
xl: '1280px'
},
spacing: {
0: '0px',
1: '4px',
2: '8px',
3: '16px',
4: '24px',
5: '32px',
6: '40px',
7: '48px',
8: '64px'
},
fontFamily: {
serif: [
'Calibre, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji'
]
},
fontSize: {
xl: ['50px'],
lg: ['23px'],
md: ['20px'],
base: ['18px'],
sm: ['16px'],
xs: ['13px']
}
}
};