-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (41 loc) · 906 Bytes
/
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
module.exports = {
important: true,
i18n: {
locales: ["en-US"],
defaultLocale: "en-US",
},
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
theme: {
extend: {
fontFamily: {
sans: ["Jost", "sans-serif"],
serif: ["Amiri", "Roboto Slab", "serif"],
},
colors: {
brand: "#30B2D2",
secondary: "#023564",
},
backgroundImage: (theme) => ({
check: "url('/icons/check.svg')",
landscape: "url('/images/landscape/2.jpg')",
}),
},
},
variants: {
extend: {
backgroundColor: ["checked"],
borderColor: ["checked"],
inset: ["checked"],
zIndex: ["hover", "active"],
},
},
plugins: [
require("@tailwindcss/typography"),
require("@tailwindcss/forms"),
require("@tailwindcss/aspect-ratio"),
],
};