diff --git a/ui/src/style.css b/ui/src/style.css index fb4740a..befcd01 100644 --- a/ui/src/style.css +++ b/ui/src/style.css @@ -29,6 +29,15 @@ --accent-color-planillas: #FF9800; --accent-color-tareas: #9C27B0; + /* Table background colors */ + --table-bg-color-asistencias: #fdebee; + --table-bg-color-empleados: #e3f2fd; + --table-bg-color-planillas: #fff8e1; + --table-bg-color-tareas: #e6f4ea; + + /* Input background color */ + --input-field-bg-color: #FFFFFF; + /* Fondos de tabla (light) */ --table-container-bg-color-asistencias: #fdebee; --table-container-bg-color-empleados: #e3f2fd; @@ -44,6 +53,13 @@ html.theme-dark { --background-color: #303030; /* Dark theme background */ --text-color: #FFFFFF; /* Text color for dark theme */ + /* Table background colors (dark theme) */ + --table-bg-color-asistencias: #4a1f28; + --table-bg-color-empleados: #193a50; + --table-bg-color-planillas: #503f1b; + --table-bg-color-tareas: #1e4028; + --input-field-bg-color: #000000; + /* NEW: Module-specific table container background colors (Dark Theme) */ --table-container-bg-color-asistencias: #4a1f28; --table-container-bg-color-empleados: #193a50; diff --git a/ui/src/views/empleados/EmpleadoForm.vue b/ui/src/views/empleados/EmpleadoForm.vue index 72b86c9..e2fa142 100644 --- a/ui/src/views/empleados/EmpleadoForm.vue +++ b/ui/src/views/empleados/EmpleadoForm.vue @@ -1,5 +1,5 @@