Skip to content

Commit

Permalink
fix(design): change title bar subtitle color
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinWeb committed Jan 25, 2024
1 parent 7e5c339 commit 3d847ac
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/Layout/header/src/Title/title-bar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

&__subtitle {
margin-left: 0.25rem;
opacity: 0.64;
color: $color-tarif-table-header-selected7;
}

&__actions {
Expand Down
2 changes: 2 additions & 0 deletions packages/core/src/common/scss/_custom-af-colorsvariables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -121,3 +121,5 @@ $color-alabaster: #fafafa !default;
$color-malachite: #1cc54e !default;
$color-malachite-light: #3db899 !default;
$color-malachite-dark: #2b8c47 !default;
// accessible
$color-tarif-table-header-selected7: #c1c4ff !default;
12 changes: 12 additions & 0 deletions packages/core/src/common/scss/colorsList.js
Original file line number Diff line number Diff line change
Expand Up @@ -460,12 +460,24 @@ const others = [
],
];

const accessible = [
[
{
title: 'SECONDARY',
name: 'color-tarif-table-header-selected7',
hex: '#c1c4ff',
default: true,
},
],
];

const colors = [];
colors.bootstrap = bootstrap;
colors.primary = primary;
colors.secondary = secondary;
colors.theme = theme;
colors.components = components;
colors.others = others;
colors.accessible = accessible;

module.exports = colors;

0 comments on commit 3d847ac

Please sign in to comment.