-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
40 lines (40 loc) · 1.01 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
module.exports = {
content: ['./index.html', './src/**/*.vue'],
theme: {
extend: {
borderWidth: {
DEFAULT: 'var(--border-width)',
},
gridTemplateColumns: {
calendar: 'repeat(7, minmax(var(--sm-col-width), 1fr))',
},
lineHeight: {
tighter: 1.1,
},
},
colors: {
highlight: '#e5ff00',
gray: '#d3d3d3',
red: '#f28000',
white: 'white',
black: 'black',
transparent: 'transparent',
},
fontFamily: {
t3: 't3-retouch',
media: 'mediasans-regular',
gates: '"BS Gates"',
},
fontSize: {
xxs: '.65rem',
xs: '.75rem',
base: '1rem',
lg: '1.125rem',
'2xl': '1.35rem',
'4xl': '2.5rem',
'5xl': '3rem',
day: 'clamp(6rem, 9vw, 9vw)',
},
},
plugins: [],
}