-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
66 lines (65 loc) · 1.46 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
darkMode: "selector",
theme: {
screens: {
sm: "0px",
md: "768px",
lg: "1280px",
xl: "1280px",
"2xl": "1280px",
},
extend: {
fontFamily: {
cooperbt: ["var(--font-cooperbt)"],
tthovespro: ["var(--font-tthovespro)"],
},
colors: {
navbar: {
l: "rgba(253, 249, 242, 0.48)",
d: "rgba(34, 39, 36, 0.48)",
},
neutral: {
100: "#F8F9FA",
200: "#E9ECEF",
300: "#DEE2E6",
400: "#CED4DA",
500: "#ADB5BD",
600: "#6C757D",
700: "#495057",
800: "#343A40",
900: "#212529",
},
primary: {
100: "#EEF3F0",
200: "#DEE7E0",
300: "#CDDCD1",
400: "#BDD0C1",
500: "#ACC4B2",
600: "#8A9D8E",
700: "#67766B",
800: "#454E47",
900: "#222724",
},
secondary: {
100: "#FEFDFB",
200: "#FDFBF6",
300: "#FDF9F2",
400: "#FCF7ED",
500: "#FBF5E9",
600: "#C9C4BA",
700: "#97938C",
800: "#64625D",
900: "#32312F",
},
},
},
},
plugins: [],
};
export default config;