Refactor styles across multiple components to use new color variables

- Updated background and border colors in DashboardWidget, DialogWidget, MessageboxWidget, and TermineWidget to use new CSS variables for consistency.
- Changed button colors in various widgets and dialogs to utilize the new primary color variable.
- Adjusted text colors in VocabCourseView, VocabDictionaryView, and VocabTrainerView to align with the new color scheme.
- Replaced hardcoded colors with CSS variables in multiple components for improved maintainability and theming.
This commit is contained in:
Torsten Schulz (local)
2026-08-21 12:45:03 +02:00
parent 7797d69a20
commit 98888a7920
19 changed files with 171 additions and 170 deletions

View File

@@ -72,7 +72,7 @@ p {
}
a {
color: #007bff;
color: var(--color-primary);
text-decoration: none;
}

View File

@@ -60,7 +60,7 @@ p {
}
a {
color: #007bff;
color: var(--color-primary);
text-decoration: none;
}

View File

@@ -60,7 +60,7 @@ p {
}
a {
color: #007bff;
color: var(--color-primary);
text-decoration: none;
}