-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
86 lines (85 loc) · 1.96 KB
/
Copy pathtailwind.config.ts
File metadata and controls
86 lines (85 loc) · 1.96 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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import type { Config } from "tailwindcss";
export default {
darkMode: ["class"],
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: "#1A1A1A",
foreground: "#FFFFFF",
card: {
DEFAULT: "#2A2A2A",
foreground: "#FFFFFF",
},
popover: {
DEFAULT: "#2A2A2A",
foreground: "#FFFFFF",
},
primary: {
DEFAULT: "#FF5A00",
foreground: "#FFFFFF",
},
secondary: {
DEFAULT: "#FF9A00",
foreground: "#FFFFFF",
},
muted: {
DEFAULT: "#AA4203",
foreground: "#E0E0E0",
},
accent: {
DEFAULT: "#FFCE00",
foreground: "#1A1A1A",
},
destructive: {
DEFAULT: "#D32F2F",
foreground: "#FFFFFF",
},
border: "#FF9A00",
input: "#3A3A3A",
ring: "#FF5A00",
fire: {
bright: "#FF5A00",
medium: "#FF9A00",
yellow: "#FFCE00",
dark: "#AA4203",
darker: "#662500",
},
chart: {
'1': '#FF5A00',
'2': '#FF9A00',
'3': '#FFCE00',
'4': '#AA4203',
'5': '#662500'
}
},
borderRadius: {
lg: 'var(--radius)',
md: 'calc(var(--radius) - 2px)',
sm: 'calc(var(--radius) - 4px)'
},
container: {
center: true,
padding: {
DEFAULT: '1rem',
sm: '2rem',
lg: '4rem',
xl: '5rem',
'2xl': '6rem',
},
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
},
},
}
},
plugins: [require("tailwindcss-animate"), require("@tailwindcss/typography")],
} satisfies Config;