-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
76 lines (76 loc) · 1.76 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
74
75
76
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,svelte,ts,tsx,vue}"],
theme: {
extend: {
screens: {
xs: "360px",
},
},
},
plugins: [require("@tailwindcss/typography"), require("daisyui")],
daisyui: {
themes: [
{
lofi: {
primary: "#0891b2",
"primary-content": "#ffffff",
secondary: "#1A1919",
"secondary-content": "#ffffff",
accent: "#262626",
"accent-content": "#ffffff",
neutral: "#000000",
"neutral-content": "#ffffff",
"base-100": "#ffffff",
"base-200": "#F2F2F2",
"base-300": "#E6E5E5",
"base-content": "#000000",
info: "#0070F3",
"info-content": "#ffffff",
success: "#21CC51",
"success-content": "#ffffff",
warning: "#FF6154",
"warning-content": "#ffffff",
error: "#DE1C8D",
"error-content": "#ffffff",
"--rounded-box": "0.25rem",
"--rounded-btn": "0.25rem",
"--rounded-badge": "0.125rem",
"--animation-btn": "0",
"--animation-input": "0",
"--btn-focus-scale": "1",
"--tab-radius": "0",
},
},
{
darkModeee: {
primary: "#22d3ee",
secondary: "#343232",
accent: "#343232",
"base-100": "#000000",
"base-200": "#0D0D0D",
"base-300": "#1A1919",
neutral: "#272626",
"neutral-focus": "#343232",
info: "#0000ff",
success: "#008000",
warning: "#ffff00",
error: "#ff0000",
"--rounded-box": "0.25rem",
"--rounded-btn": "0.25rem",
"--rounded-badge": "0.125rem",
"--animation-btn": "0",
"--animation-input": "0",
"--btn-focus-scale": "1",
"--tab-radius": "0",
},
},
],
},
safelist: [
{
pattern: /grid-cols-[0-9]+/i,
variants: ["base", "sm", "md", "lg"],
},
],
};