-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
68 lines (67 loc) · 1.56 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
61
62
63
64
65
66
67
68
// tailwind.config.js
const colors = require('tailwindcss/colors')
module.exports = {
mode: 'jit',
content: ['./public/**/*.html', './src/**/*.{astro,js,jsx,ts,tsx,vue,svelte}'],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
gray: colors.stone,
red: colors.red,
blue: colors.sky,
yellow: colors.amber,
white: '#FFF'
},
extend: {
screens: {
print: { raw: 'print' }
},
transitionProperty: {
height: 'height',
display: 'display',
visibility: 'visibility'
},
fontFamily: {
sans: [
'Atkinson Hyperlegible Regular',
'ui-sans-serif',
'system-ui',
'-apple-system',
'BlinkMacSystemFont',
'Segoe UI',
'Roboto',
'Helvetica Neue',
'Arial',
'Noto Sans',
'sans-serif',
'Apple Color Emoji',
'Segoe UI Emoji',
'Segoe UI Symbol',
'Noto Color Emoji'
],
serif: [
'Atkinson Hyperlegible Regular',
'ui-serif',
'Georgia',
'Cambria',
'Times New Roman',
'Times',
'serif'
],
sansBold: ['Atkinson Hyperlegible Bold'],
sansItalic: ['Atkinson Hyperlegible Italic'],
sansBoldItalic: ['Atkinson Hyperlegible BoldItalic']
}
},
maxWidth: {
hd: '1920px'
}
},
variants: {
extend: {
transform: ['hover']
}
},
plugins: [require('@tailwindcss/aspect-ratio')]
};