This repository was archived by the owner on Aug 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
49 lines (49 loc) · 1.32 KB
/
tailwind.config.js
File metadata and controls
49 lines (49 loc) · 1.32 KB
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
module.exports = {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
darkMode: "media",
theme: {
extend: {
inset: {
"1/2": "50%",
},
colors: {
// bulgarian-rose
accent: "#501408",
// warhammer underworlds logo red
accent2: "#920104",
// frontend-masters red
accent3: {
100: "#F27263",
300: "#D94D43",
400: "#CC423B",
500: "#c02d28",
700: "#A61712",
900: "#8C0601",
},
"objective-gold": "#D38E36",
swirl: "#d0cec2",
},
minWidth: {
"3/4": "75%",
},
width: {
em: "1em",
},
height: {
em: "1em",
},
flex: {
"1/2": "0 1 50%",
"1/3": "0 1 33%",
},
gridTemplateColumns: {
"1fr/auto/1fr": "1fr auto 1fr",
"a/fr/a": "auto 1fr auto",
},
},
},
variants: {
extend: {},
},
plugins: [require("@tailwindcss/forms"), require("tailwind-scrollbar")],
};