-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
35 lines (34 loc) · 931 Bytes
/
tailwind.config.cjs
File metadata and controls
35 lines (34 loc) · 931 Bytes
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
const { addDynamicIconSelectors } = require("@iconify/tailwind");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
keyframes: {
bounce: {
"0%, 100%": { transform: "translateY(-5%);" },
"50%": { transform: "translateY(5%);" },
},
},
},
},
plugins: [require("daisyui"), addDynamicIconSelectors()],
daisyui: {
themes: [
{
bumblebee: {
...require("daisyui/src/theming/themes")["bumblebee"],
primary: "#da6f2c",
"primary-content": "#FFFFFF",
secondary: "#da6f2c",
"secondary-content": "#FFFFFF",
accent: "#9900ff",
"accent-content": "#FFFFFF",
"base-100": "#fffcf0",
"base-200": "#fffef8",
"base-300": "#fffffe",
},
},
],
},
};