-
Notifications
You must be signed in to change notification settings - Fork 10
/
tailwind.config.js
47 lines (46 loc) · 996 Bytes
/
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
const colors = require("tailwindcss/colors");
module.exports = {
content: ["./src/**/*.{ts,tsx}"],
darkMode: "class",
plugins: [],
theme: {
colors: {
black: colors.black,
white: colors.white,
neutral: colors.neutral,
amber: { 600: colors.amber["600"] },
blue: { 500: colors.blue["500"] },
common: "#1a1718",
uncommon: "#707883",
rare: "#a58e4a",
mythic: "#bf4427",
"A+": "#23c552",
A: "#41c755",
"A-": "#60ca58",
"B+": "#7ecc5b",
B: "#9ccf5f",
"B-": "#bad162",
"C+": "#d9d465",
C: "#f7d668",
"C-": "#eeaf5d",
"D+": "#e68751",
D: "#dd6046",
"D-": "#d5383a",
F: "#cc112f",
},
extend: {
blur: {
xs: "2px",
},
fontFamily: {
belerenSmallCaps: "Beleren SmallCaps Bold",
},
screens: {
"1.5xl": "1300px",
},
transitionTimingFunction: {
DEFAULT: "ease",
},
},
},
};