From 6303beefef81fd7ed09294a2df5e7a4bc8164e30 Mon Sep 17 00:00:00 2001 From: Luca Cavallaro Date: Wed, 5 Jan 2022 19:47:27 +0100 Subject: [PATCH] fix(colors): add units to hsl, according to sass 1.32.0 deprecation (#42) see more: https://sass-lang.com/documentation/breaking-changes/color-units --- src/scss/_colors.scss | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/scss/_colors.scss b/src/scss/_colors.scss index 5701bfc..03e7caa 100644 --- a/src/scss/_colors.scss +++ b/src/scss/_colors.scss @@ -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%);