forked from WarsWorld/WarsWorld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
58 lines (56 loc) · 1.54 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
// eslint-disable-next-line @typescript-eslint/no-var-requires
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
prefix: "@",
content: ["./src/**/*.{ts,tsx}"],
theme: {
extend: {
sans: ["Proxima Nova", ...defaultTheme.fontFamily.sans],
colors: {
primary: "#E47220",
"primary-dark": "#943E15FF",
"primary-light": "#ec9d64",
secondary: "#b7eab8",
"bg-primary": "#171a1e",
"bg-secondary": "#1e2b46",
"bg-tertiary": "#394f75",
"match-orange": "#C0601B",
"bg-match-live": "#432929",
"match-live-dot": "#B40000",
// Country colors
"orange-star": "rgb(208, 64, 56)",
"blue-moon": "rgb(70, 110, 254)",
"green-earth": "rgb(55, 164, 42)",
"yellow-comet": "rgb(218, 165, 32)",
"black-hole": "rgb(12,12,12)",
// Social Media Colors
discord: "#7289DA",
github: "#171515",
},
minWidth: {
20: "5rem",
},
},
screens: {
cellphone: "360px",
tablet: "480px",
smallscreen: "768px",
laptop: "1024px",
monitor: "1518px",
large_monitor: "1980px",
short: { raw: "(min-height: 600px)" },
medium: { raw: "(min-height: 700px)" },
},
},
safelist: [
{
pattern:
/(bg|border|text)-(orange-star|blue-moon|green-earth|yellow-comet|black-hole)/,
},
{
pattern: /(bg|border|text)-(github|discord|white|black)/,
},
],
plugins: [],
};