mirror of
https://github.com/gurucomputing/headscale-ui.git
synced 2026-01-23 02:34:43 +00:00
29 lines
492 B
JavaScript
29 lines
492 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",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
|
|
plugins: [require("@tailwindcss/typography"), require("daisyui")]
|
|
};
|
|
|
|
module.exports = config;
|