-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
40 lines (39 loc) · 1.03 KB
/
Copy pathtailwind.config.ts
File metadata and controls
40 lines (39 loc) · 1.03 KB
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
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}",
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
blue: {
50: "#DFDFF0",
75: "#dfdff2",
100: "#F0F2FA",
200: "#010101",
300: "#4FB7DD",
},
violet: {
300: "#5724ff",
},
yellow: {
100: "#8e983f",
300: "#edff66",
},
},
fontFamily: {
'circular-web': ['var(--font-circular-web)', 'sans-serif'],
'general': ['var(--font-general)', 'sans-serif'],
'robert-medium': ['var(--font-robert-medium)', 'sans-serif'],
'robert-regular': ['var(--font-robert-regular)', 'sans-serif'],
'zentry': ['var(--font-zentry-regular)', 'sans-serif'],
}
},
},
plugins: [],
};
export default config;