-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
66 lines (66 loc) · 1.5 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
module.exports = {
purge: { content: ["./public/**/*.html", "./src/**/*.vue"] },
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
yellow: {
"50": "#fef6e6",
"100": "#fef1d7",
"200": "#fddea1",
"300": "#fabf47",
"400": "#ea9e06",
"500": "#bd8005",
"600": "#956504",
"700": "#775103",
"800": "#5e4002",
"900": "#5a3c02",
},
green: {
"50": "#f4f8ec",
"100": "#eef4e1",
"200": "#dae8bf",
"300": "#b9d586",
"400": "#92bd42",
"500": "#789b36",
"600": "#5d792a",
"700": "#495e21",
"800": "#3d4f1c",
"900": "#374819",
},
purple: {
"50": "#f9f6f8",
"100": "#f5f0f4",
"200": "#eae1e9",
"300": "#d5c3d3",
"400": "#c0a5bd",
"500": "#a781a2",
"600": "#8d6288",
"700": "#6c4b68",
"800": "#5a3f57",
"900": "#543b51",
},
red: {
"50": "#fcf4f2",
"100": "#fcf0ee",
"200": "#f7ddd9",
"300": "#f0bcb2",
"400": "#e79688",
"500": "#dd6955",
"600": "#c84028",
"700": "#99311e",
"800": "#802919",
"900": "#772618",
},
},
},
container: {
center: true,
padding: "2rem",
},
},
variants: {
extend: {},
},
plugins: [],
};