-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
65 lines (65 loc) · 1.29 KB
/
Copy pathtailwind.config.js
File metadata and controls
65 lines (65 loc) · 1.29 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
module.exports = {
purge: [
"./pages/**/*.js",
"./pages/**/*.tsx",
"./components/**/*.js",
"./components/**/*.tsx",
],
darkMode: false, // or 'media' or 'class'
theme: {
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1536px",
},
fontFamily: {
display: ["Noto Sans JP"],
},
extend: {
screens: {
xs: "414px",
},
fontSize: {
"2xs": ".625rem",
},
colors: {
primary: {
light: "#293A5E",
DEFAULT: "#202B43",
dark: "#182338",
},
secondary: {
DEFAULT: "rgb(73, 180, 255)",
},
body: {
DEFAULT: "#E5EBEF",
muted: "#7986A3",
},
game: {
victory: "rgb(36, 232, 204)",
defeat: "rgb(255, 88, 89)",
draw: "rgb(244, 200, 116)",
other: "#7986A3",
},
medal: {
gold: "#D4AF37",
silver: "#c0c0c0",
bronze: "#9F7A34",
},
grade: {
god: "#D4AF37",
great: "rgb(73, 180, 255)",
good: "#E5EBEF",
soso: "#7986A3",
bad: "rgb(255, 88, 89)",
},
},
},
},
variants: {
extend: {},
},
plugins: [],
};