-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
51 lines (50 loc) · 1.32 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
import type { Config } from "tailwindcss"
export default {
content: ["./src/**/*.{html,js,svelte,ts}"],
theme: {
extend: {
colors: {
// #3e5991
green: {
500: "#81B29A",
600: "#0A5C36",
},
gray: {
400: "#b2c1e0",
},
violet: {
600: "#806491",
},
amber: {
900: "#B9848C",
},
blue: {
900: "#02315E",
700: "#00457E",
600: "#2F70AF",
},
skyblue: {
500: "#3e5991",
700: "#2b3f66",
},
deepblue: {
100: "#989ab3",
500: "#3D405B",
},
sand: {
300: "#F4F1DE",
},
red: {
500: "#E07A5F",
},
},
zIndex: {
"6666": "6666",
"7777": "7777", // header
"8888": "8888", // overlay
"9999": "9999", // modals
},
},
},
plugins: [],
} satisfies Config