mirror of https://github.com/explosion/spaCy.git
Fix light versions of colors
This commit is contained in:
parent
63d79947c8
commit
1774cf5152
|
@ -27,6 +27,7 @@ $font-code: 'Source Code Pro', Consolas, 'Andale Mono', Menlo, Monaco, Courier,
|
|||
// Colors
|
||||
|
||||
$colors: ( blue: #09a3d5, red: #d9515d )
|
||||
$colors-light: (blue: #cceaf4, red: #f9d7da)
|
||||
|
||||
$color-back: #fff !default
|
||||
$color-front: #1a1e23 !default
|
||||
|
@ -34,7 +35,7 @@ $color-dark: lighten($color-front, 20) !default
|
|||
|
||||
$color-theme: map-get($colors, $theme)
|
||||
$color-theme-dark: darken(map-get($colors, $theme), 5)
|
||||
$color-theme-light: saturate(lighten(map-get($colors, $theme), 35), 5)
|
||||
$color-theme-light: map-get($colors-light, $theme)
|
||||
|
||||
$color-subtle: #ddd !default
|
||||
$color-subtle-light: #f6f6f6 !default
|
||||
|
|
Loading…
Reference in New Issue