-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
77 lines (76 loc) · 2.05 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import { createThemes } from "tw-colors";
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
darkMode: [],
theme: {
colors: {
black: "#000",
bq: {
danger: "#ff5555",
tip: "#5555ff",
caution: "#ffc517",
warning: "#ffc517",
},
},
extend: {
width: {
page: 1536,
settings: 1280,
},
fontFamily: {
fa: "fa",
"fa-reg": "fa-regular",
system: ["system-ui", "sans-serif"],
},
zIndex: {
1: "1",
},
},
},
safelist: [
{
pattern: /border-bq-+/,
},
],
plugins: [
createThemes({
dark: {
1: "hsl(243, 26%, 16%)",
2: "hsl(243, 26%, 21%)",
3: "hsl(243, 26%, 26%)",
4: "hsl(243, 26%, 31%)",
text: "hsl(240, 27%, 90%)",
primary: "hsl(242, 41%, 74%)",
secondary: "hsl(272, 41%, 74%)",
},
light: {
1: "hsl(349, 65%, 95%)",
2: "hsl(349, 65%, 93%)",
3: "hsl(349, 65%, 91%)",
4: "hsl(349, 65%, 89%)",
text: "#140709",
primary: "#d1566a",
secondary: "#b273f0",
},
alpha: {
1: "#331D2D",
2: "#45283D",
3: "#58304D",
4: "#56304C",
text: "#ffffff",
primary: "#F876D3",
secondary: "#EF656E",
},
catppuccin: {
1: "#303446",
2: "#414559",
3: "#51576d",
4: "#626880",
text: "#c6d0f5",
primary: "#8caaee",
secondary: "#babbf1",
},
}),
],
};