-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.mjs
More file actions
53 lines (53 loc) · 1.33 KB
/
tailwind.config.mjs
File metadata and controls
53 lines (53 loc) · 1.33 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
animation: {
"fade-in": "fadeIn 0.2s ease-in",
"fade-out": "fadeOut 0.3s ease-out",
},
keyframes: {
fadeIn: {
"0%": { opacity: "0" },
"100%": { opacity: "1" },
},
fadeOut: {
"0%": { opacity: "1" },
"100%": { opacity: "0" },
},
},
},
},
plugins: [
require("@tailwindcss/typography"),
require("daisyui"),
require("tailwindcss-3d"),
],
daisyui: {
darkTheme: "skeletor",
themes: [
"lofi",
"synthwave",
"nord",
"black",
{
skeletor: {
...require("daisyui/src/theming/themes")["black"],
primary: "#84FBA2",
secondary: "#BD93F9",
accent: "#F3E4A2",
neutral: "#2D2B38", // Base neutral
"base-100": "#2B2836", // Very close to neutral for cohesion
"base-200": "#312F3C", // Slightly lighter for contrast
"base-300": "#34323F", // A bit lighter still for top layers
info: "#93B4FF",
success: "#84FBA2",
warning: "#FFB793",
error: "#F36A66",
"base-content": "#CEDEFF",
},
},
],
},
};