Refactor: Adaptar componentes base al sistema de temas
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 49s

Cambios:
- app.vue: Reemplazar #fef9f0 con var(--brand-text)
- layouts/dashboard.vue: Usar var(--brand-text)
- layouts/informe.vue: Usar var(--brand-text)

Todos los componentes base ahora responden al sistema de temas.
This commit is contained in:
2025-10-30 17:35:30 -06:00
parent cac84adc7d
commit 1df10db4a0
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
<template>
<UApp>
<div class="brand-shell text-[#fef9f0]">
<div class="brand-shell text-[var(--brand-text)]">
<NuxtRouteAnnouncer />
<NuxtLayout>
<NuxtPage />

View File

@@ -1,5 +1,5 @@
<template>
<div class="brand-shell min-h-screen text-[#fef9f0]">
<div class="brand-shell min-h-screen text-[var(--brand-text)]">
<UDashboardGroup storage-key="analytics-dashboard" class="h-full">
<AppSidebar />

View File

@@ -1,5 +1,5 @@
<template>
<div class="brand-shell min-h-screen text-[#fef9f0]">
<div class="brand-shell min-h-screen text-[var(--brand-text)]">
<UDashboardGroup storage-key="analytics-dashboard" class="h-full">
<AppSidebar />