design: change light theme to light

This commit is contained in:
Julien Calixte
2026-05-13 18:38:54 +02:00
parent cd60429145
commit 9e07204430
4 changed files with 9 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
<!doctype html> <!doctype html>
<html lang="en" data-theme="caramellatte"> <html lang="en" data-theme="light">
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />

View File

@@ -1,7 +1,7 @@
allowBuilds: allowBuilds:
'@parcel/watcher': set this to true or false '@parcel/watcher': true
core-js: set this to true or false core-js: false
esbuild: set this to true or false esbuild: true
fsevents: set this to true or false fsevents: true
sharp: set this to true or false sharp: true
vue-demi: set this to true or false vue-demi: true

View File

@@ -31,7 +31,7 @@
@plugin 'daisyui' { @plugin 'daisyui' {
themes: themes:
caramellatte --default, light --default,
dracula --prefersdark; dracula --prefersdark;
} }

View File

@@ -2,6 +2,6 @@
// Update these values to change the light and dark themes // Update these values to change the light and dark themes
export const themeConfig = { export const themeConfig = {
light: 'caramellatte', light: 'light',
dark: 'dracula' dark: 'dracula'
} }