-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
63 lines (63 loc) · 1.2 KB
/
Copy pathtailwind.config.js
File metadata and controls
63 lines (63 loc) · 1.2 KB
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
module.exports = {
purge: {
content: [
'./src/**/*.html',
'./src/**/*.njk',
]
},
darkMode: false,
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
white: {
pure: '#ffffff',
DEFAULT: '#d7d7d7'
},
gray: {
DEFAULT: '#696969'
},
red: {
DEFAULT: '#af1b3f',
dark: '#831530'
},
blue: {
lighter: '#d7e1eb',
light: '#00284c',
DEFAULT: '#001c37',
translucent: '#0a2849d9'
}
},
fontFamily: {
sans: ['Futura', 'Arial', 'sans-serif'],
serif: ['Playfair Display', 'serif'],
mono: ['Space Mono'],
},
screens: {
'xs': '400px',
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
'2xl': '1536px',
},
extend: {
maxWidth: {
'1/2': '50%',
'1/3': '33.3334%',
'2/3': '66.6667%'
},
typography: (theme) => ({
DEFAULT: {
css: {
a: {
color: theme('colors.red.DEFAULT'),
}
},
},
}),
},
},
variants: {},
plugins: [require('@tailwindcss/typography'),],
}