Theme fixes, logo updated, reduce duplication of components

And many more updates
This commit is contained in:
hackerESQ
2024-08-23 21:59:42 -05:00
parent c255d14f23
commit a0ec39638e
26 changed files with 248 additions and 231 deletions
+19 -1
View File
@@ -4,7 +4,25 @@ import typography from '@tailwindcss/typography';
/** @type {import('tailwindcss').Config} */
export default {
daisyui: {
themes: ["business", "corporate"]
themes: [
{
business: {
...require("daisyui/src/theming/themes")["business"],
primary: "#8C5364",
secondary: "#939BB0",
"--animation-input": "0.15s",
"hover": '#00000000'
},
},
{
corporate: {
...require("daisyui/src/theming/themes")["corporate"],
primary: "#75A1D5",
secondary: "#91A3B0",
"--animation-input": "0.15s"
},
},
]
},
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',