-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
48 lines (47 loc) · 1.13 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss"
import plugin from "tailwindcss/plugin"
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
inter: ["var(--font-inter)"],
poppins: ["var(--font-poppins)"],
roboto: ["var(--font-roboto)"],
wotfard: ["var(--font-wotfard)"],
},
colors: {
green: {
primary: "#008a7a",
darkest: "#132925",
dark: "#4A5759",
medium: "#B0C4B1",
light: "#DEDBD2",
lightest: "#EBEAE4",
},
red: {
primary: "#d8003e",
dark: "#ad0032",
light: "#fdf1f4",
},
yellow: {
primary: "#ffd634",
},
},
backgroundImage: {
defaultGreen:
"linear-gradient(to right bottom, #dedbd2, #d5d5c8, #cacfbf, #bec9b7, #b0c4b1)",
},
},
},
plugins: [
plugin(function ({ addVariant }) {
addVariant("hocus", ["&:hover", "&:focus"])
}),
],
}
export default config