Replace explicit color #6e8b87 in branding by $color-primary

This commit is contained in:
Wolfgang Huß 2023-03-01 07:57:07 +01:00
parent e719ae23c9
commit a4a25eb5cf

View File

@ -104,20 +104,20 @@ a.group-teaser footer .ds-chip-primary {
/* number count color */ /* number count color */
div.ds-number > p.ds-number-count { div.ds-number > p.ds-number-count {
color: #6e8b87; color: $color-primary;
} }
/* active tab border bottom color */ /* active tab border bottom color */
div.tab-navigation li.Tabs__tab { div.tab-navigation li.Tabs__tab {
border-bottom-color: #6e8b87; border-bottom-color: $color-primary;
} }
/* submit button color group form */ /* submit button color group form */
form.group-form button.ds-button-primary { form.group-form button.ds-button-primary {
background-color: #6e8b87; background-color: $color-primary;
} }
/* color of active filter tags in post teaser */ /* color of active filter tags in post teaser */
span.category-tag.filterActive { span.category-tag.filterActive {
background-color: #6e8b87; background-color: $color-primary;
} }