-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
52 lines (51 loc) · 1.09 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
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
},
mode: "jit",
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
], // remove unused styles in production
darkMode: "media", // or 'media' or 'class'
theme: {
extend: {
backgroundImage: {
// prettier-ignore
"waves": "url('/images/waves.svg')",
},
typography: {
DEFAULT: {
css: {
a: {
color: "#3182ce",
"&:hover": {
color: "#2c5282",
},
},
img: {
margin: "auto",
},
},
},
},
colors: {
"brand-blue": "#00abe9",
},
fontFamily: {
sans: ["Roboto", ...defaultTheme.fontFamily.sans],
},
},
fontFamily: {
carter: ["Leckerli One", "sans-serif"],
},
container: {
center: true,
},
},
variants: {
extend: {},
},
plugins: [require("@tailwindcss/typography")],
};