colorize: add support for mark

This commit is contained in:
Kazhnuz 2018-10-15 10:13:19 +02:00
parent c2b4e4ba04
commit 6859972112
3 changed files with 8 additions and 0 deletions

View File

@ -847,3 +847,6 @@ a, a:hover, a:active {
.text-success {
color: #75b82d; }
mark {
background-color: #fac694; }

View File

@ -195,3 +195,7 @@ a, a:hover, a:active {
&-info { @include text-color($color-info); }
&-success { @include text-color($color-success); }
}
mark {
background-color: lighten($color-mark, 30%)
}

View File

@ -15,6 +15,7 @@ $color-primary: $color-purple;
$color-secondary: $color-blue;
$color-link: $color-blue;
$color-selection: $color-blue;
$color-mark: $color-orange;
@mixin borders() {
border: $border-size solid rgba(0, 0, 0, 0.3)