-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
99 lines (98 loc) · 2.93 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/** @type {import('tailwindcss').Config} */
import shadcnTailwindPlugin from "./src/components/shadcn/lib/shadcn-tailwind-config.ts";
export default {
darkMode: ["class"],
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
screens: {
print: {
raw: "print",
},
screen: {
raw: "screen",
},
},
colors: {
sidebar: {
DEFAULT: "oklch(var(--sidebar-background))",
foreground: "oklch(var(--sidebar-foreground))",
primary: "oklch(var(--sidebar-primary))",
"primary-foreground": "oklch(var(--sidebar-primary-foreground))",
accent: "oklch(var(--sidebar-accent))",
"accent-foreground": "oklch(var(--sidebar-accent-foreground))",
border: "oklch(var(--sidebar-border))",
ring: "oklch(var(--sidebar-ring))",
},
},
},
},
plugins: [
require("daisyui"),
require("tailwindcss-animate"),
require("@tailwindcss/container-queries"),
shadcnTailwindPlugin,
],
daisyui: {
themes: [
{
light: {
"color-scheme": "light",
primary: "#997300",
"primary-content": "#ffd965",
secondary: "#5b9519",
"secondary-content": "#fff8fd",
accent: "#602286",
"accent-content": "#00110e",
neutral: "#2b3440",
"neutral-content": "#d7dde4",
"base-100": "#ffffff",
"base-200": "#f2f2f2",
"base-300": "#e5e6e6",
"base-content": "#1f2937",
success: "#00a96e",
error: "#ff5861",
info: "#00b5ff",
warning: "#ffbe00",
// "--animation-btn": ".25s",
// "--animation-input": ".2s",
// "--border-btn": "1px",
// "--btn-focus-scale": ".95",
// "--rounded-badge": "1.9rem",
// "--rounded-box": "1rem",
// "--rounded-btn": ".5rem",
// "--tab-border": "1px",
// "--tab-radius": ".5rem",
},
dark: {
"color-scheme": "dark",
primary: "#ffe497",
"primary-content": "#1d1707",
secondary: "#6db618",
"secondary-content": "#062e05",
accent: "#200034",
"accent-content": "#d59afd",
neutral: "#eeeeee",
"neutral-content": "#1f1f1f",
"base-100": "#2b1f09",
"base-200": "#342d15",
"base-300": "#574921",
"base-content": "#fcf9f2",
success: "#00a96e",
error: "#ff5861",
info: "#00b5ff",
warning: "#ffbe00",
// "--animation-btn": ".25s",
// "--animation-input": ".2s",
// "--border-btn": "1px",
// "--btn-focus-scale": ".95",
// "--rounded-badge": "1.9rem",
// "--rounded-box": "1rem",
// "--rounded-btn": ".5rem",
// "--tab-border": "1px",
// "--tab-radius": ".5rem",
},
},
],
},
};