mirror of
https://github.com/gurucomputing/headscale-ui.git
synced 2026-01-23 10:35:45 +00:00
30 lines
799 B
JavaScript
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;
|