Skip to content

Commit

Permalink
fix(colors): add units to hsl, according to sass 1.32.0 deprecation (#42
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacavallaro committed Jan 5, 2022
1 parent 4727f91 commit 6303bee
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/scss/_colors.scss
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
$white: hsl(0, 0, 100);
$off-white: hsl(0, 0, 98);
$gray-97: hsl(0, 0, 97);
$lightest-gray: hsl(0, 0, 95);
$lighter-gray: hsl(0, 0, 90);
$light-gray: hsl(0, 0, 84);
$gray: hsl(0, 0, 78);
$dark-gray: hsl(0, 0, 64);
$darker-gray: hsl(0, 0, 49);
$darkest-gray: hsl(0, 0, 34);
$off-black: hsl(0, 0, 25);
$black: hsl(0, 0, 19);
$white: hsl(0, 0, 100%);
$off-white: hsl(0, 0, 98%);
$gray-97: hsl(0, 0, 97%);
$lightest-gray: hsl(0, 0, 95%);
$lighter-gray: hsl(0, 0, 90%);
$light-gray: hsl(0, 0, 84%);
$gray: hsl(0, 0, 78%);
$dark-gray: hsl(0, 0, 64%);
$darker-gray: hsl(0, 0, 49%);
$darkest-gray: hsl(0, 0, 34%);
$off-black: hsl(0, 0, 25%);
$black: hsl(0, 0, 19%);

0 comments on commit 6303bee

Please sign in to comment.