-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.js
97 lines (96 loc) · 2.22 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{html,js,svelte,ts}"],
darkMode: "class",
theme: {
container: {
center: true,
padding: "1rem",
},
extend: {
colors: {
transparent: "transparent",
white: "#fff",
black: {
DEFAULT: "#000",
50: "#f7f8f8",
100: "#f1f2f3",
200: "#d9dcde",
300: "#b7bdc2",
400: "#9099a0",
500: "#54555F",
600: "#3E3F4B",
700: "#343541",
800: "#20232E",
900: "#141723",
},
purple: {
50: "#f9f5ff",
100: "#f1e7ff",
200: "#e6d4ff",
300: "#d2b2ff",
400: "#b680ff",
DEFAULT: "#a15bfc",
600: "#842eef",
700: "#701dd3",
800: "#601dac",
900: "#4f198a",
950: "#330467",
},
green: {
50: "#edfcf5",
100: "#d3f8e5",
200: "#aceed0",
300: "#75e0b7",
DEFAULT: "#4acd9e",
500: "#1aaf7f",
600: "#0e8d67",
700: "#0b7155",
800: "#0b5a44",
900: "#0a4a39",
950: "#042a21",
},
blue: {
50: "#eff8ff",
100: "#dbeffe",
200: "#bfe4fe",
300: "#94d3fc",
400: "#61baf9",
DEFAULT: "#3d9cf5",
600: "#267eea",
700: "#1e67d7",
800: "#1f54ae",
900: "#1f4889",
950: "#172d54",
},
red: {
50: "#fef4f2",
100: "#ffe6e1",
200: "#ffd0c8",
300: "#ffb0a2",
400: "#fd826c",
DEFAULT: "#f5593d",
600: "#e23e20",
700: "#bf3016",
800: "#9d2b17",
900: "#822a1a",
950: "#471208",
},
orange: {
50: "#fef8ee",
100: "#feeed6",
200: "#fbdaad",
300: "#f9be78",
400: "#f5963d",
DEFAULT: "#f27b1d",
600: "#e36113",
700: "#bd4911",
800: "#963a16",
900: "#793215",
950: "#411709",
},
},
},
},
plugins: [require("@tailwindcss/typography")],
};