headscale-ui/tailwind.config.cjs
2022-07-10 17:46:52 +10:00

30 lines
799 B
JavaScript

const config = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {}
},
daisyui: {
themes: [
{
hsui: {
"primary": "#065f46",
"secondary": "#0369a1",
"accent": "#6b21a8",
"neutral": "#78716c",
"base-100": "#FFFFFF",
"info": "#3ABFF8",
"success": "#36D399",
"warning": "#FBBD23",
"error": "#F87272",
},
},
"light", "dark", "cupcake", "bumblebee", "emerald", "corporate", "synthwave", "retro", "cyberpunk", "valentine", "halloween", "garden", "forest", "aqua", "lofi", "pastel", "fantasy", "wireframe", "black", "luxury", "dracula", "cmyk", "autumn", "business", "acid", "lemonade", "night", "coffee", "winter"
],
},
plugins: [require("@tailwindcss/typography"), require("daisyui")]
};
module.exports = config;