-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
30 lines (30 loc) · 924 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
module.exports = {
prefix: '',
mode: 'jit',
content: ['./_html/**/*.html', './*.php', './_php/**/*.php', './_js/**/*.js', './tailwind.safelist.txt'],
theme: {
fontFamily: {
custom: ['"Open Sans"', 'sans-serif']
},
extend: {
colors: {
black: 'var(--color-black)',
white: 'var(--color-white)',
red: 'var(--color-red)'
}
},
screens: {
xs: '0px', // 0 - 639
sm: '640px', // 640 - 767
md: '768px', // 768 - 1023
lg: '1024px', // 1024 - 1279
xl: '1280px', // 1280 - 1535
'2xl': '1536px', // 1536 - 1919
'3xl': '1920px', // 1920 - 2559
'4xl': '2560px', // 2560 - 3839
'5xl': '3840px' // 3840 - ∞
}
},
variants: {},
plugins: []
};