diff --git a/ui/src/App.vue b/ui/src/App.vue index 29901c9..5b8edf1 100644 --- a/ui/src/App.vue +++ b/ui/src/App.vue @@ -21,6 +21,16 @@ watchEffect(() => { root.style.setProperty('--accent-color-tareas', ui.accentColorTareas) root.style.setProperty('--accent-color-planillas', ui.accentColorPlanillas) root.style.setProperty('--accent-color-asistencias', ui.accentColorAsistencias) + // Note: Configuracion accent color is missing here, should be added if used for CSS vars. + // root.style.setProperty('--accent-color-configuracion', ui.accentColorConfiguracion) + + + // Per-module table background colors + root.style.setProperty('--table-bg-color-empleados', ui.tableBgColorEmpleados) + root.style.setProperty('--table-bg-color-tareas', ui.tableBgColorTareas) + root.style.setProperty('--table-bg-color-planillas', ui.tableBgColorPlanillas) + root.style.setProperty('--table-bg-color-asistencias', ui.tableBgColorAsistencias) + root.style.setProperty('--table-bg-color-configuracion', ui.tableBgColorConfiguracion) if (ui.theme === 'dark') { root.classList.add('theme-dark') diff --git a/ui/src/components/asistencias/cardAsistencia.vue b/ui/src/components/asistencias/cardAsistencia.vue index f8d8d29..b7426a4 100644 --- a/ui/src/components/asistencias/cardAsistencia.vue +++ b/ui/src/components/asistencias/cardAsistencia.vue @@ -1,12 +1,13 @@