-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
30 lines (29 loc) · 914 Bytes
/
tailwind.config.ts
File metadata and controls
30 lines (29 loc) · 914 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
import { Config } from "tailwindcss";
export default {
content: ["./src/**/*.{tsx,ts,scss}"],
mode: "jit",
theme: {
extend: {
colors: {
black: {
100: "rgba(0, 0, 10, 0.4)",
200: "rgba(0, 0, 10, 0.6)",
300: "#1e1e1e",
900: "#000000"
},
white: {
0: "rgba(255, 255, 255, 0)",
7: "rgba(255, 255, 255, 0.07)",
100: "#ffffff"
},
aqua: "#4360A2",
dark: "rgba(0, 0, 0, 0.5)",
"light-blue": "rgba(100, 130, 255, 0.2)",
"dark-blue": "#204e8a",
blurple: "#5865F2"
}
}
},
darkMode: ["class", '[data-mode="dark"]'],
plugins: [require("tailwindcss-animate")]
} satisfies Config;