-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.mjs
56 lines (56 loc) · 1.83 KB
/
tailwind.config.mjs
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
darkMode: "class",
theme: {
extend: {
colors: {
pixel: {
background: "#ddcfff",
primary: "#040de1",
light: "#937cfd",
"code-bg": "#F8EDFF",
"menu-bg": "rgba(248, 237, 255, 0.9)",
},
"pixel-dark": {
background: "#2d2e34",
primary: "#b392d4",
light: "#8379ad",
"code-bg": "#141717",
"menu-bg": "rgba(66, 66, 66, 0.9)",
},
},
boxShadow: ({ theme }) => ({
pixel: `6px 6px 0px -2px ${theme(
"colors.pixel.background"
)}, 6px 6px ${theme("colors.pixel.primary")}`,
"pixel-dark": `6px 6px 0px -2px ${theme(
"colors.pixel-dark.background"
)}, 6px 6px ${theme("colors.pixel-dark.primary")}`,
}),
height: {
404: "75vh",
},
textUnderlineOffset: {
6: "6px",
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
ringOffsetWidth: {
m2: "-2",
m4: "-4",
},
borderWidth: {
link: "2px",
},
gridTemplateColumns: {
"1a1": "1fr auto 1fr",
"1a": "1fr auto",
},
},
},
plugins: [],
};