Skip to content

Commit

Permalink
Changes 'light' colour variable to 'lightest' and adds new 'light' co…
Browse files Browse the repository at this point in the history
…lour
  • Loading branch information
tempertemper committed Jan 23, 2021
1 parent b3551b9 commit 96b1f98
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .changelog
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ All notable changes to this project will be documented in this file. The format

### Changes
- lightens logo underscore
- Changes 'light' Light Mode colour variable to 'lightest' and introduces new 'light'

----------

Expand Down
4 changes: 2 additions & 2 deletions src/scss/admin/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
}

@mixin highlight-box {
background-color: $colour-primary-light;
background-color: $colour-primary-lightest;
@include dark-mode(
$background: $colour-dark-mode-highlight,
$color: $colour-dark-mode-white
Expand Down Expand Up @@ -117,7 +117,7 @@

@mixin embedded-media {
border-radius: $border-radius-default;
background-color: $colour-primary-light;
background-color: $colour-primary-lightest;
@include dark-mode($background: $colour-dark-mode-highlight);
display: block;
box-shadow: 0 0 .25em lighten($black, 85%);
Expand Down
3 changes: 2 additions & 1 deletion src/scss/admin/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ $white: #fff;
// $colour-primary: #0097db;
$colour-primary: #007cba;
$colour-primary-lighter: #008dd1;
$colour-primary-light: #e6f7ff;
$colour-primary-light: #09adfc;
$colour-primary-lightest: #e6f7ff;
$colour-primary-darker: #0073ab;

// Dark mode colours
Expand Down

0 comments on commit 96b1f98

Please sign in to comment.