Skip to content

Commit 3d847ac

Browse files
committed
fix(design): change title bar subtitle color
1 parent 7e5c339 commit 3d847ac

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

packages/Layout/header/src/Title/title-bar.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
&__subtitle {
3535
margin-left: 0.25rem;
36-
opacity: 0.64;
36+
color: $color-tarif-table-header-selected7;
3737
}
3838

3939
&__actions {

packages/core/src/common/scss/_custom-af-colorsvariables.scss

+2
Original file line numberDiff line numberDiff line change
@@ -121,3 +121,5 @@ $color-alabaster: #fafafa !default;
121121
$color-malachite: #1cc54e !default;
122122
$color-malachite-light: #3db899 !default;
123123
$color-malachite-dark: #2b8c47 !default;
124+
// accessible
125+
$color-tarif-table-header-selected7: #c1c4ff !default;

packages/core/src/common/scss/colorsList.js

+12
Original file line numberDiff line numberDiff line change
@@ -460,12 +460,24 @@ const others = [
460460
],
461461
];
462462

463+
const accessible = [
464+
[
465+
{
466+
title: 'SECONDARY',
467+
name: 'color-tarif-table-header-selected7',
468+
hex: '#c1c4ff',
469+
default: true,
470+
},
471+
],
472+
];
473+
463474
const colors = [];
464475
colors.bootstrap = bootstrap;
465476
colors.primary = primary;
466477
colors.secondary = secondary;
467478
colors.theme = theme;
468479
colors.components = components;
469480
colors.others = others;
481+
colors.accessible = accessible;
470482

471483
module.exports = colors;

0 commit comments

Comments
 (0)