-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
57 lines (56 loc) · 1.7 KB
/
tailwind.config.ts
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
import { type Config } from "tailwindcss";
import plugin from "tailwindcss/plugin";
export default {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
maxWidth: {
quater: "25%",
half: "50",
most: "75%",
},
colors: {
snakred: {
50: "#fdf2f2",
100: "#f9d9d9",
200: "#f4b0b0",
300: "#ef8888",
400: "#ea5f5f",
500: "#f84a4a", // Base color
600: "#e63e3e",
700: "#d23535",
800: "#b72b2b",
900: "#9a2222",
DEFAULT: "#f84a4a", // Base color
},
logo: {
50: "#f7ebff",
100: "#edccff",
200: "#e29dff",
300: "#d77dff",
400: "#cc5eff",
500: "#cc66ff", // Base color
600: "#c759ff",
700: "#bd4bff",
800: "#b44eff",
900: "#aa41ff",
DEFAULT: "#cc66ff", // Base color
},
},
},
},
plugins: [
plugin(function ({ addUtilities }) {
addUtilities({
".no-scrollbar::-webkit-scrollbar": {
display: "none",
},
".no-scrollbar": {
"-ms-overflow-style": "none",
"scrollbar-width": "none",
},
});
}),
require("@tailwindcss/forms"),
],
} satisfies Config;