-
Notifications
You must be signed in to change notification settings - Fork 13
/
tailwind.config.js
82 lines (78 loc) · 1.71 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
const defaultTheme = require('tailwindcss/defaultTheme')
const colors = require('tailwindcss/colors')
module.exports = {
purge: {
content: [
'./src/**/*.html',
],
},
theme: {
extend: {
fontFamily: {
sans: [
'Fira Sans',
defaultTheme.fontFamily.sans,
],
serif: [
"Merriweather",
"Roboto Slab",
defaultTheme.fontFamily.serif
],
'standout': [
'Fira Code', 'monospace'
]
},
fontSize: {
'2xs': ".5rem",
'xs': '.75rem',
'sm': '.875rem',
body: ["15px", "22.5px"],
'lg': '1.125rem',
'xl': '1.25rem',
'2xl': '1.375rem',
'3xl': '1.625rem',
'4xl': '2.25rem',
'5xl': '3rem',
'6xl': '4rem',
'7xl': '5rem',
'lead': '1.125rem'
},
colors: {
muted: "#f5f5f5",
emphasis: "#444",
dark: "#252525",
hr: "#e5e5e5",
code: "var(--bg-code)",
highlight: "#5d8c91",
// primary: 'var(--color-primary)',
// secondary: 'var(--color-secondary)',
// heading: 'var(--color-heading)',
// body: 'var(--color-body)'
},
textColor: {
muted: "#999",
mutedDark: "#b5b5b5",
emphasizedDark: "#fff",
black: "#252525",
code: "#3d545b",
},
container: {
center: true,
padding: {
DEFAULT: '1rem',
sm: '2rem',
lg: '3rem',
xl: '4rem',
'2xl': '5rem',
},
},
height: {
xl: '32rem',
'2xl': '40rem',
'3xl': '48rem',
},
},
},
variants: {},
plugins: [],
}