-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.cjs
73 lines (72 loc) · 1.4 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
const COLORS = {
BLUE: {
DEFAULT: "#335FE3",
50: "#FDFDFF",
100: "#E6ECFC",
200: "#BAC9F5",
300: "#8DA5EF",
400: "#6082E9",
500: "#335FE3",
600: "#1B46C8",
700: "#15379B",
800: "#0F276E",
900: "#091741",
},
ORANGE: {
DEFAULT: "#F77030",
50: "#FFFFFF",
100: "#FFF8F4",
200: "#FDD6C3",
300: "#FBB492",
400: "#F99261",
500: "#F77030",
600: "#EB5209",
700: "#BA4107",
800: "#893005",
900: "#581E03",
},
GRAY: {
50: "#f9fafb",
100: "#f3f4f6",
200: "#e5e7eb",
300: "#d1d5db",
400: "#9ca3af",
500: "#6b7280",
600: "#4b5563",
700: "#374151",
800: "#1f2937",
900: "#111827",
},
};
module.exports = {
content: ["./src/**/*.{js,svelte}"],
theme: {
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
// '2xl': '1536px',
// '3xl': '1792px',
"till-sm": { max: "640px" },
"till-md": { max: "768px" },
"till-lg": { max: "1024px" },
"till-xl": { max: "1280px" },
},
extend: {
backgroundColor: {
blue: COLORS.BLUE,
orange: COLORS.ORANGE,
gray: COLORS.GRAY,
},
colors: {
primary: "#8feef5",
secondary: "#ef4baf",
// blue (base - #335fe3)
blue: COLORS.BLUE,
// orange (base - #f77030)
orange: COLORS.ORANGE,
},
},
},
};