-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
45 lines (44 loc) · 991 Bytes
/
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
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
purge: [
'./app/views/**/*.html.*'
],
theme: {
extend: {
borderRadius: {
normal: '10px',
lg: '12px'
},
colors: {
black: {
default: 'var(--color-black)'
},
white: {
default: 'var(--color-white)',
180: 'var(--color-white-180)',
200: 'var(--color-white-200)',
600: 'var(--color-white-600)'
}
},
fontFamily: {
sans: ['Neuzeit S LT Std', ...defaultTheme.fontFamily.sans],
mono: ['Neuzeit S LT Std', ...defaultTheme.fontFamily.mono]
},
fontSize: {
xs: ['13px', '18px'],
sm: ['15px', '20px'],
base: ['17px', '22px']
},
height: {
14: '56px'
},
letterSpacing: {
tightest: '-0.41px',
tighter: '-0.24px',
tight: '-0.08px'
}
}
},
variants: {},
plugins: []
};