-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.mjs
52 lines (50 loc) · 1.29 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
/** @type {import('tailwindcss').Config} */
const { addIconSelectors } = require("@iconify/tailwind");
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
fontFamily: {
major: ["Major Mono Display", "monospace"],
"geist-sans": ["Geist Sans", "sans-serif"],
"geist-mono": ["Geist Mono", "monospace"],
},
},
},
darkMode: ["selector", '[data-theme="dark"]'],
plugins: [addIconSelectors(["ph"]), require("daisyui")],
daisyui: {
themes: [
{
light: {
primary: "#00e8ff",
secondary: "#ce74ff",
accent: "#ffa400",
"base-100": "#fffff4",
neutral: "#181818",
info: "#007fff",
success: "#00ff8a",
warning: "#ffe200",
error: "#ff0000",
"--rounded-box": "0",
"--rounded-btn": "0",
},
},
{
dark: {
primary: "#4fc4cf",
secondary: "#994ff3",
accent: "#fbdd74",
"base-100": "#0d1117",
neutral: "#fffffe",
info: "#0ca5e9",
success: "#2dd4bf",
warning: "#f4bf50",
error: "#fb7085",
"--rounded-box": "0",
"--rounded-btn": "0",
},
},
],
},
};