Update color palette and styles across components for improved visual consistency
- Changed theme color in index.html to a brighter orange for better aesthetics. - Introduced a modern color palette in styles.scss for enhanced readability and consistency. - Updated various components (AppFooter, AppNavigation, DialogWidget, etc.) to utilize new color variables, ensuring a cohesive look throughout the application. - Adjusted button styles and hover effects for improved user interaction feedback. - Enhanced background colors and text colors for better contrast and visibility.
This commit is contained in:
@@ -821,7 +821,7 @@ export default {
|
||||
}
|
||||
|
||||
.messages > li .footer {
|
||||
color: #f9a22c;
|
||||
color: #FF6B35;
|
||||
font-size: 0.8em;
|
||||
margin-top: 0.3em;
|
||||
display: flex;
|
||||
|
||||
@@ -218,11 +218,11 @@
|
||||
opacity: 0.9;
|
||||
}
|
||||
.city-price-green {
|
||||
background-color: #90EE90;
|
||||
background-color: var(--color-primary-green);
|
||||
color: #000;
|
||||
}
|
||||
.city-price-orange {
|
||||
background-color: #FFA500;
|
||||
background-color: #FF6B35;
|
||||
color: #000;
|
||||
}
|
||||
.city-price-red {
|
||||
|
||||
@@ -627,11 +627,11 @@
|
||||
cursor: help;
|
||||
}
|
||||
.city-price-green {
|
||||
background-color: #90EE90;
|
||||
background-color: var(--color-primary-green);
|
||||
color: #000;
|
||||
}
|
||||
.city-price-orange {
|
||||
background-color: #FFA500;
|
||||
background-color: #FF6B35;
|
||||
color: #000;
|
||||
}
|
||||
.city-price-red {
|
||||
|
||||
Reference in New Issue
Block a user