🎨 Updates themes colors

This commit is contained in:
Rune Harlyk
2024-08-17 21:42:47 +02:00
parent 63459acc7f
commit 5e2f34f792
+10 -2
View File
@@ -7,12 +7,20 @@ export default {
plugins: [require('daisyui')],
daisyui: {
themes: [
'light',
{
light: {
...require('daisyui/src/theming/themes')['light'],
primary: '#00bfff',
accent: '#3c00ff',
'base-content': 'oklch(0.3 0.012 256)'
}
},
{
dark: {
...require('daisyui/src/theming/themes')['dark'],
primary: '#00bfff',
accent: '#3c00ff'
accent: '#3c00ff',
'base-content': 'white'
}
}
],