Skip to content

Commit

Permalink
Add light/dark color functions
Browse files Browse the repository at this point in the history
  • Loading branch information
jgthms committed Oct 18, 2019
1 parent 46b3edf commit 5131f2a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions sass/utilities/functions.sass
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,19 @@
@return rgba(#000, 0.7)
@else
@return #fff

@function findLightColor($color)
@if type-of($color) == 'color'
$l: 96%
@if lightness($color) > 96%
$l: lightness($color)
@return change-color($color, $lightness: $l)
@return $background

@function findDarkColor($color)
@if type-of($color) == 'color'
$l: 29%
@if lightness($color) < 29%
$l: lightness($color)
@return change-color($color, $lightness: $l)
@return $text-strong
2 changes: 1 addition & 1 deletion sass/utilities/initial-variables.sass
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ $white-bis: hsl(0, 0%, 98%) !default
$white: hsl(0, 0%, 100%) !default

$orange: hsl(14, 100%, 53%) !default
$yellow: hsl(48, 100%, 53%) !default
$yellow: hsl(48, 100%, 67%) !default
$green: hsl(141, 53%, 53%) !default
$turquoise: hsl(171, 100%, 41%) !default
$cyan: hsl(204, 71%, 53%) !default
Expand Down

0 comments on commit 5131f2a

Please sign in to comment.