colorize: add support for mark
This commit is contained in:
parent
c2b4e4ba04
commit
6859972112
3 changed files with 8 additions and 0 deletions
|
@ -847,3 +847,6 @@ a, a:hover, a:active {
|
|||
|
||||
.text-success {
|
||||
color: #75b82d; }
|
||||
|
||||
mark {
|
||||
background-color: #fac694; }
|
||||
|
|
|
@ -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%)
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
|
|
Reference in a new issue