-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
42 lines (41 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
const plugin = require("tailwindcss/plugin");
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
container: {
center: true,
padding: {
DEFAULT: "1rem",
// sm: "2rem",
// lg: "4rem",
// xl: "5rem",
// "2xl": "6rem",
},
},
extend: {
backgroundImage: {
"benefit-how":
"linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgb(143, 39, 4) 50%, rgb(143, 39, 4) 100%)",
},
colors: {
samBlueLight: "#e9eef3",
samBlue: "#a9bcd0",
samDarkRed: "#8f2704",
samGrey: "#383d3b",
samGreyDark: "#333",
samOrange: "#de5f2b",
},
fontFamily: {
cooperBook: ["Cooper Hewitt Book", "Helvitica"],
cooperBold: ["Cooper Hewitt Bold", "Helvitica"],
fontin: ["Fontin Sans Regular", "sans-serif"],
fontinBold: ["Fontin Sans Bold", "sans-serif"],
openSans: ["var(--font-open-sans)", "sans-serif"],
},
},
},
plugins: [require("@headlessui/tailwindcss")],
};