Restructure; use DaisyUI

This commit is contained in:
Geomitron
2023-11-28 19:50:45 -06:00
parent 49c3f38f99
commit 2eef4d0bee
727 changed files with 1283 additions and 298840 deletions

51
tailwind.config.js Normal file
View File

@@ -0,0 +1,51 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
theme: {
extend: {
screens: {
'3xl': '1900px',
},
},
},
content: ['./src-angular/**/*.{html,js,ts}'],
plugins: [require('daisyui')],
daisyui: {
logs: false,
themes: [
'business',
'dark',
'halloween',
'night',
'synthwave',
'aqua',
'emerald',
'lemonade',
'valentine',
'winter',
{
'aren': {
"primary": "#00FFFF",
"secondary": "#FF1010",
"accent": "#999999",
"neutral": "#606666",
"base-100": "#111111",
"info": "#666666",
"success": "#AEFFFF",
"warning": "#FF5555",
"error": "#FF1111",
},
'froogs': {
"primary": "#22d3ee",
"secondary": "#e879f9",
"accent": "#818cf8",
"neutral": "#312e81",
"base-100": "#280044",
"info": "#7e22ce",
"success": "#c026d3",
"warning": "#fef08a",
"error": "#111827",
},
},
],
}
}