Skip to content
This repository has been archived by the owner on May 12, 2019. It is now read-only.

Commit

Permalink
mark and selection color based in $secondary-color
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Nov 12, 2015
1 parent 673d0af commit 3810a2c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions assets/scss/modules/_global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
html {
height: 100%;
max-height: 100%;

&.expanded {
overflow-y: hidden;
}
Expand All @@ -23,11 +23,11 @@ body {
}

mark {
background: saturate($primary-color, 60%);
background: saturate($secondary-color, 60%);
}

::selection {
background: lighten($primary-color, 26%);
background: lighten($secondary-color, 26%);
}

::scrollbar {
Expand Down
3 changes: 2 additions & 1 deletion assets/scss/modules/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ $cyan : #006064;
$red : #e74c3c;
$purple : #493252;
$slate : #3d4260;
$yellow : #FFC107;

$primary-color : lighten($red, 5%);
$secondary-color : $gray-dark;
$secondary-color : $yellow;

$cover-secondary : rgba(#5f2c82, .1);
$cover-primary : rgba(#49a09d, .2);
Expand Down

0 comments on commit 3810a2c

Please sign in to comment.