34 lines
783 B
JavaScript
34 lines
783 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ["JetBrains Mono", "monospace"],
|
|
mono: ["JetBrains Mono", "monospace"],
|
|
},
|
|
},
|
|
},
|
|
plugins: [require("daisyui")],
|
|
daisyui: {
|
|
darkTheme: "admtheme",
|
|
themes: [
|
|
"dark",
|
|
{
|
|
admtheme: {
|
|
primary: "#618375",
|
|
secondary: "#73747b",
|
|
accent: "#618375",
|
|
neutral: "#252627",
|
|
"base-100": "#292a2d",
|
|
"base-200": "#3b3d42",
|
|
"base-300": "#4a4b50",
|
|
info: "#618375",
|
|
success: "#618375",
|
|
warning: "#a9a9b3",
|
|
error: "#ff4444",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
};
|