-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
61 lines (60 loc) · 1.49 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
const defaultTheme = require("tailwindcss/defaultTheme");
const colors = require("tailwindcss/colors");
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
experimental: {
applyComplexClasses: true,
extendedSpacingScale: true,
extendedFontSizeScale: true,
},
plugins: [],
theme: {
extend: {
fontFamily: {
sans: ['"Roboto"', ...defaultTheme.fontFamily.sans],
},
colors: {
blueGray: colors.blueGray,
rose: colors.rose,
emerald: colors.emerald,
orange: colors.orange,
"accent-1": "#36393f",
"accent-2": "#2f3136",
"accent-3": "#202225",
"accent-black": "#050507",
"accent-lightblack": "#1F2125",
// "accent-lighterblack": "#36353A",
"accent-lighterblack": "hsl(252 6% 19% / 1)",
// "accent-darkgray": "#58595C",
"accent-darkgray": "hsl(240 5% 27% / 1)",
"accent-gray": "#97989B",
"accent-lightgray": "#E3E5E8",
"accent-lightblue": "#2161FE",
"accent-darkblue": "#2253EA",
"accent-red": "#db2828",
"accent-green": "#34d060",
},
boxShadow: {},
borderRadius: {
huge: "0.675rem",
xxl: "7.5rem",
},
zIndex: {
neg: -1,
},
spacing: {
108: "28rem",
120: "32rem",
},
},
},
variants: {
extend: {
borderWidth: ["last", "hover"],
borderRadius: ["last"],
},
},
};