-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
60 lines (60 loc) · 1.27 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./app.vue",
"./error.vue",
],
theme: {
extend: {
fontSize: {
xxs: "0.65rem",
},
colors: {
actan: {
50: "#FBF8F4",
100: "#F5EFE5",
200: "#EDE0CF",
300: "#E3D0B5",
400: "#DABF9B",
500: "#D1B183",
600: "#BE9050",
700: "#956E37",
800: "#644A25",
900: "#302412",
950: "#1A130A",
},
acred: {
50: "#FCDCD9",
100: "#FAB9B3",
200: "#F46E62",
300: "#EE2816",
400: "#A2180C",
500: "#540C06",
600: "#430A05",
700: "#340804",
800: "#210502",
900: "#130301",
950: "#0A0101",
},
acblue: {
50: "#D8DEFD",
100: "#B1BDFB",
200: "#6880F8",
300: "#1A3EF4",
400: "#0926B9",
500: "#05176D",
600: "#041258",
700: "#030D3F",
800: "#02092C",
900: "#010414",
950: "#00020A",
},
},
},
},
plugins: [],
}