-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
44 lines (44 loc) · 1.22 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
important: "#__carbonvoyage",
content: [
"./components/**/*.{js,ts,jsx,tsx}",
"./content-script/**/*.{js,ts,jsx,tsx}",
"./onboarding/**/*.{js,ts,jsx,tsx}",
"./options/**/*.{js,ts,jsx,tsx}",
"./popup/**/*.{js,ts,jsx,tsx}",
],
theme: {
fontFamily: {
display: ["bookman-jf-pro", "serif"],
body: ["apolline", "serif"],
},
extend: {
colors: {
"carbon-bronze": "#7D671F",
"carbon-gold": "#FFF0AD",
"carbon-light": "#e5d391",
"carbon-white": "#FFF7D2",
},
backgroundImage: {
hero: "url('/hero-banner.png')",
},
height: {
"screen-1/2": "50vh",
"screen-1/3": "33vh",
"screen-3/4": "75vh",
hero: "calc(100vh - 104px)",
120: "30rem",
18: "4.5rem",
},
inset: {
58: "14.5rem",
},
},
},
plugins: [
require("@tailwindcss/forms")({
strategy: "class",
}),
],
};