forked from StellarSplit/StellarSplit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (44 loc) · 937 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
44 lines (44 loc) · 937 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class", // enables class-based dark mode
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
// Drips-wave / Stellar-wave palette
primary: {
DEFAULT: "#6C63FF",
dark: "#8B85FF",
},
surface: {
light: "#FFFFFF",
dark: "#0F1117",
},
background: {
light: "#F4F4F8",
dark: "#1A1D27",
},
card: {
light: "#FFFFFF",
dark: "#252836",
},
text: {
light: "#1A1A2E",
dark: "#E8E8F0",
},
muted: {
light: "#6B7280",
dark: "#9CA3AF",
},
border: {
light: "#E5E7EB",
dark: "#374151",
},
},
transitionDuration: {
theme: "300ms",
},
},
},
plugins: [],
};