-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
50 lines (49 loc) · 1.12 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
// Example `tailwind.config.js` file
const colors = require("tailwindcss/colors");
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
theme: {
cursor: {
...defaultTheme.cursor
},
colors: {
gray: colors.coolGray,
blue: colors.lightBlue,
red: colors.rose,
pink: colors.fuchsia,
"light-blue": colors.lightBlue,
cyan: colors.cyan,
white: colors.white,
purple: colors.violet,
green: colors.emerald,
yellow: colors.amber
},
fontFamily: {
sans: ["'Libre Franklin'", "sans-serif"],
serif: ["Merriweather", "serif"]
},
extend: {
spacing: {
"128": "32rem",
"144": "36rem"
},
borderRadius: {
"4xl": "2rem"
},
fontFamily: {
mono: ['"B612 Mono"', ...defaultTheme.fontFamily.mono],
heading: ['"Playfair Display"'],
kernel: ['"Miriam Libre"'],
fancy: ['"Lora"'],
award: ["Niconne"],
lato: ["Lato"]
}
}
},
variants: {
extend: {
borderColor: ["focus-visible"],
opacity: ["disabled"]
}
}
};