-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
49 lines (45 loc) · 1.14 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
49
import type { Config } from "tailwindcss";
export default {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
"cherry": "#D6001C",
"black": "#000000",
"dark-gray": "#515151",
"light-gray": "#7A7777",
"secondary-red": "#AB2328",
"secondary-blue": "#00205B",
"secondary-white": "#dcdcdc",
"secondary-gray": "#b4b4b4",
"tint-red": {
100: "#EABCAD",
200: "#D58570",
300: "#C35442"
},
"tint-blue": {
100: "#A5B0CB",
200: "#667BA2",
300: "2#B517F"
},
"tint-green": {
100: "#D4E6E8",
200: "#B3D3D5",
300: "#94C0C6"
}
},
fontFamily: {
'display': ['Nunito', 'serif'],
'body': ['Lato', 'sans-serif'],
'sans-serif': ['Roboto', 'Poppins', 'sans-serif']
}
},
},
plugins: [],
} satisfies Config;