-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./app/templates/*.{html,js}","./app/templates/data/projects/*.{html,js}"],
future: {
hoverOnlyWhenSupported: true,
},
theme: {
extend: {
fontFamily: {
"noto-sans": "Noto Sans",
},
backgroundSize: {
"size-200": "200% 200%",
},
backgroundPosition: {
"pos-0": "0% 0%",
"pos-25": "25% 25%",
"pos-50": "50% 50%",
"pos-75": "75% 75%",
"pos-100": "100% 100%",
},
colors: {
danube: {
50: "#f3f7fb",
100: "#e3eef6",
200: "#cee2ef",
300: "#accee4",
400: "#85b4d5",
500: "#75a3ce",
600: "#5483bc",
700: "#4a70ab",
800: "#415c8c",
900: "#384e70",
950: "#263145",
},
opium: {
50: "#f8f7f8",
100: "#f3f0f1",
200: "#e9e1e3",
300: "#d8c9cb",
400: "#bfa7aa",
500: "#a98b8e",
600: "#917172",
700: "#866565",
800: "#664e4e",
900: "#574444",
950: "#322525",
},
rangoon_green: {
50: "#f6f4ef",
100: "#eae7dd",
200: "#d8d2be",
300: "#bfb797",
400: "#a79d74",
500: "#8b8357",
600: "#6d6643",
700: "#555036",
800: "#45432f",
900: "#3c3a2b",
950: "#232216",
},
},
},
},
plugins: [],
};