-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.ts
116 lines (112 loc) · 3.35 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: ["class"],
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
extend: {
fontFamily: {
sans: ["Space Grotesk", "sans-serif"],
},
colors: {
// Main Colors
nebula: "#00B6E7",
helix: "#22CCEE",
trifid: "#2ED3B7",
aurora: "#76d484",
comet: "#94E5A0",
cosmic: "#A4D756",
venus: "#C7F284",
// Neutrals
space: "#0C0C0C",
meteorite: "#151514",
charcoal: "#1d1d1c",
gunmetal: "#30302e",
steel: "#707070",
cloud: "#e8f9ff",
// Gradients
gradient: {
1: "linear-gradient(90deg, #00B6E7, #A4D756)", // Nebula Blue to Cosmic Lime
2: "linear-gradient(90deg, #22CCEE, #2ED3B7)", // Helix Cyan to Trifid Teal
3: "linear-gradient(90deg, #2ED3B7, #C7F284)", // Trifid Teal to Venus Lime
},
// Theme Configuration
background: {
DEFAULT: "#e8f9ff", // Cloud
dark: "#0C0C0C", // Space Black
},
foreground: {
DEFAULT: "#1d1d1c", // Charcoal
dark: "#e8f9ff", // Cloud
},
card: {
DEFAULT: "#ffffff", // White
foreground: "#1d1d1c", // Charcoal
dark: "#151514", // Meteorite
"dark-foreground": "#e8f9ff", // Cloud
},
popover: {
DEFAULT: "#ffffff", // White
foreground: "#1d1d1c", // Charcoal
dark: "#151514", // Meteorite
"dark-foreground": "#e8f9ff", // Cloud
},
primary: {
DEFAULT: "#00B6E7", // Nebula Blue
foreground: "#ffffff",
dark: "#22CCEE", // Helix Cyan
"dark-foreground": "#0C0C0C", // Space Black
},
secondary: {
DEFAULT: "#2ED3B7", // Trifid Teal
foreground: "#ffffff",
dark: "#76d484", // Aurora Green
"dark-foreground": "#0C0C0C", // Space Black
},
muted: {
DEFAULT: "#707070", // Steel
foreground: "#30302e", // Gunmetal
dark: "#30302e", // Gunmetal
"dark-foreground": "#707070", // Steel
},
accent: {
DEFAULT: "#22CCEE", // Helix Cyan
foreground: "#ffffff",
dark: "#2ED3B7", // Trifid Teal
"dark-foreground": "#0C0C0C", // Space Black
},
destructive: {
DEFAULT: "#ff4444",
foreground: "#ffffff",
dark: "#ff6666",
"dark-foreground": "#ffffff",
},
border: {
DEFAULT: "#30302e", // Gunmetal
dark: "#1d1d1c", // Charcoal
},
input: {
DEFAULT: "#30302e", // Gunmetal
dark: "#1d1d1c", // Charcoal
},
ring: {
DEFAULT: "#00B6E7", // Nebula Blue
dark: "#22CCEE", // Helix Cyan
},
chart: {
"1": "#00B6E7", // Nebula Blue
"2": "#22CCEE", // Helix Cyan
"3": "#2ED3B7", // Trifid Teal
"4": "#76d484", // Aurora Green
"5": "#A4D756", // Cosmic Lime
},
},
borderRadius: {
lg: "var(--radius)",
md: "calc(var(--radius) - 2px)",
sm: "calc(var(--radius) - 4px)",
},
},
},
plugins: [require("tailwindcss-animate")],
};
export default config;