RED-4397: Dark theme highlights color

This commit is contained in:
Adina Țeudan 2022-07-01 17:49:43 +03:00
parent 1f4ddb3351
commit 15f78f6be8
2 changed files with 5 additions and 3 deletions

View File

@ -4,6 +4,6 @@
@include common-mixins.line-clamp(1);
em {
background-color: #fffcc4;
background-color: var(--iqser-highlight-color);
}
}

View File

@ -43,7 +43,8 @@
$iqser-annotation-comments-hover: vars.$grey-4,
$iqser-workload-pages-bg: vars.$grey-8,
$iqser-tab-hover: vars.$grey-6,
$iqser-loading-progress: vars.$grey-7
$iqser-loading-progress: vars.$grey-7,
$iqser-highlight-color: #fffcc4
);
$light-accent-5: lighten(vars.$accent, 5%);
@ -92,5 +93,6 @@ $dark-accent-10: darken(vars.$accent, 10%);
$iqser-annotation-comments-hover: $light-accent-5,
$iqser-workload-pages-bg: $dark-accent-8,
$iqser-tab-hover: vars.$accent,
$iqser-loading-progress: $light-accent-10
$iqser-loading-progress: $light-accent-10,
$iqser-highlight-color: #905854
);