-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
96 lines (94 loc) · 2.41 KB
/
tailwind.config.ts
File metadata and controls
96 lines (94 loc) · 2.41 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
87
88
89
90
91
92
93
94
95
96
import defaultTheme from "tailwindcss/defaultTheme";
import type { Config } from "tailwindcss";
const themeConfig: Config = {
darkMode: "class",
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
container: {
center: true,
padding: {
DEFAULT: "1rem",
sm: "1.5rem",
lg: "2rem",
xl: "2rem",
"2xl": "2rem",
},
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1400px",
},
},
extend: {
fontFamily: {
sans: ["var(--font-mono)", "var(--font-roboto-mono)", "var(--font-geist-mono)", ...defaultTheme.fontFamily.mono],
mono: ["var(--font-mono)", "var(--font-roboto-mono)", "var(--font-geist-mono)", ...defaultTheme.fontFamily.mono],
},
colors: {
transparent: "transparent",
current: "currentColor",
border: "rgba(255, 102, 0, 0.3)",
input: "rgba(255, 102, 0, 0.3)",
ring: "#ff6600",
background: "#000000",
foreground: "#ffffff",
primary: {
DEFAULT: "#ff6600",
foreground: "#000000",
},
secondary: {
DEFAULT: "rgba(26, 26, 26, 0.8)",
foreground: "#ffffff",
},
muted: {
DEFAULT: "rgba(26, 26, 26, 0.8)",
foreground: "rgba(255, 255, 255, 0.5)",
},
accent: {
DEFAULT: "#ff6600",
foreground: "#000000",
},
destructive: {
DEFAULT: "#ef4444",
foreground: "#ffffff",
},
popover: {
DEFAULT: "rgba(26, 26, 26, 0.8)",
foreground: "#ffffff",
},
card: {
DEFAULT: "rgba(26, 26, 26, 0.8)",
foreground: "#ffffff",
},
orange: {
50: "rgba(255, 102, 0, 0.05)",
100: "#ff6600",
200: "#ff8833",
300: "#cc5500",
400: "rgba(255, 102, 0, 0.4)",
500: "#ff6600",
600: "#cc5500",
700: "#aa4400",
800: "rgba(255, 102, 0, 0.8)",
900: "rgba(255, 102, 0, 0.9)",
},
},
borderRadius: {
lg: "0.5rem",
md: "calc(0.5rem - 2px)",
sm: "calc(0.5rem - 4px)",
},
backdropBlur: {
xs: "2px",
},
},
},
plugins: [],
};
export default themeConfig;