generated from jihchi/vitejs-template-react-rescript
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
68 lines (68 loc) · 1.51 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.bs.js"],
theme: {
extend: {
colors: {
yellow: {
DEFAULT: "#F6DB40",
50: "#FEFFFC",
100: "#FBFEE1",
200: "#FAFBAB",
300: "#F9F076",
400: "#F6DB40",
500: "#F2BD0B",
600: "#BD8409",
700: "#875406",
800: "#522C04",
900: "#1C0D01",
},
green: {
DEFAULT: "#77D570",
50: "#FFFFFF",
100: "#F2FBF3",
200: "#C7EEC8",
300: "#9DE29B",
400: "#77D570",
500: "#4CC63D",
600: "#3C952C",
700: "#2B611D",
800: "#162E0E",
900: "#000000",
},
blue: {
DEFAULT: "#75B6EA",
50: "#F1F9FD",
100: "#DFF1FA",
200: "#BCDFF5",
300: "#98CCEF",
400: "#75B6EA",
500: "#4497E3",
600: "#2075CF",
700: "#18559F",
800: "#11386E",
900: "#091D3D",
},
purple: {
DEFAULT: "#C388DE",
50: "#FDF8FD",
100: "#F7E8F9",
200: "#E9C8F0",
300: "#D7A8E7",
400: "#C388DE",
500: "#A55CD2",
600: "#8235C0",
700: "#5D2995",
800: "#3C1D69",
900: "#20113D",
},
},
minHeight: {
20: "5rem",
24: "6rem",
28: "7rem",
},
},
},
plugins: [],
};