-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (38 loc) · 898 Bytes
/
tailwind.config.js
File metadata and controls
38 lines (38 loc) · 898 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
module.exports = {
content: ["./src/**/*.{html,js,svelte,ts}"],
theme: {
extend: {
colors: {
primary: {
50: "#eff6ff",
100: "#dbeafe",
200: "#bfdbfe",
300: "#93c5fd",
400: "#60a5fa",
500: "#3b82f6",
600: "#2563eb",
700: "#1d4ed8",
},
mono: {
background: "#121212",
lightBackground: "#ffffff",
card: "#202020",
accent: "#1a1a1a",
divider: "#333333",
blueAccent: "#2e6aac",
yellowAccent: "#f6d365",
accentDark: "#252525",
accentLight1: "#2c2c2c",
accentLight2: "#3a3a3a",
},
type: {
primary: "#d0d0d0",
emphasized: "#e0e0e0",
dimmed: "#a3a3a3",
footer: "#505050",
dark: "#0a0a0a",
},
},
},
},
};