-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
40 lines (40 loc) · 972 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
screens: {
xs: "360px",
sm: "576px",
md: "992px",
lg: "1280px",
xl: "1400px",
"2xl": "1920px"
},
colors: {
success: {
dark: "rgba(11, 141, 57, 1)",
normal: "rgba(41, 163, 84, 1)",
light: "var(--success-light)"
},
error: {
dark: "rgba(202, 29, 8, 1)",
normal: "rgba(227, 53, 32, 1)",
light: "var(--error-light)"
},
warning: {
dark: "var(--warning-dark)",
normal: "var(--warning-normal)",
light: "var(--warning-light)"
},
yellow: {
10: "var(--yellow-10)",
50: "var(--yellow-50)",
400: "var(--yellow-400)",
500: "var(--yellow-500)"
}
}
}
},
plugins: []
};