-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.cjs
81 lines (78 loc) · 1.88 KB
/
tailwind.config.cjs
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/** @type {import("tailwindcss").Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
darkMode: "class",
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
screens: {
"xs": "450px",
...defaultTheme.screens,
},
extend: {
boxShadow: {
"inner-md": "inset 1px 4px 6px 0 rgb(0 0 0 / 0.1)",
"inner-md-2": "inset 2px 2px 6px 0 rgb(0 0 0 / 0.15)",
"inner-md-3": "inset 2px 4px 6px 0 rgb(0 0 0 / 0.21)",
"inner-md-4": "inset 2px 4px 10px 0 rgb(0 0 0 / 0.28)",
"inner-lg": "inset 4px 5px 7px 0 rgb(0 0 0 / 0.2)",
"inner-xl": "inset 4px 9px 9px 0 rgb(0 0 0 / 0.3)",
"inner-2xl": "inset 4px 11px 12px 0 rgb(0 0 0 / 0.3)",
},
colors: {
darken: "#00000066",
twitch: {
DEFAULT: "#9146FF",
light: "#9147ff",
dark: "#772ce8",
},
accent: {
DEFAULT: "#f15a22",
100: "#fcded3",
200: "#f9bda7",
300: "#f79c7a",
400: "#f47b4e",
500: "#f15a22",
600: "#c1481b",
700: "#913614",
800: "#60240e",
900: "#301207",
},
primary: {
50: "#C4D4E6",
100: "#84A0C1",
200: "#5C7D9E",
300: "#34526F",
400: "#213659",
500: "#162448",
600: "#0F1E40",
700: "#0A1939",
800: "#051330",
900: "#040D29",
DEFAULT: "#0C2340",
},
secondary: {
DEFAULT: "#179bd5",
50: "#ebf4fc",
100: "#d1ebf7",
200: "#a2d7ee",
300: "#74c3e6",
400: "#45afdd",
500: "#179bd5",
600: "#127caa",
700: "#0e5d80",
800: "#093e55",
900: "#051f2b",
},
paper: "#faebd7",
},
fontFamily: {
opensans: ["\"Open Sans\"", "sans-serif"],
inter: ["\"Inter\"", "sans-serif"],
mono: ["\"Roboto Mono\"", "monospace"],
raleway: ["\"Raleway\"", "sans-serif"],
roboto: ["\"Roboto\""],
},
},
},
plugins: [require("@tailwindcss/typography"), require("@tailwindcss/forms")],
};