Update color scheme across components to use new primary orange variable

- Replaced hardcoded orange color values with the new CSS variable for primary orange in multiple components, ensuring consistency in styling.
- Updated styles in DialogWidget, MessageboxWidget, SettingsWidget, SimpleTabs, and various Falukant components to enhance maintainability and readability.
This commit is contained in:
Torsten Schulz (local)
2026-01-23 13:56:19 +01:00
parent 079250fcd7
commit fb821dbf21
11 changed files with 28 additions and 28 deletions

View File

@@ -253,9 +253,9 @@ export default {
margin-left: 10px;
padding: 5px 12px;
cursor: pointer;
background: #FF6B35;
background: var(--color-primary-orange);
color: #000000;
border: 1px solid #FF6B35;
border: 1px solid var(--color-primary-orange);
border-radius: 4px;
transition: background 0.05s;
border: 1px solid transparent;
@@ -263,8 +263,8 @@ export default {
}
.contact-button:hover {
background: #FFF4F0;
color: #5D4037;
border: 1px solid #5D4037;
background: var(--color-primary-orange-light);
color: var(--color-text-secondary);
border: 1px solid var(--color-text-secondary);
}
</style>