diff options
Diffstat (limited to 'core/css/variables.scss')
-rw-r--r-- | core/css/variables.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/css/variables.scss b/core/css/variables.scss index 35b1ecab863..f750b844f0f 100644 --- a/core/css/variables.scss +++ b/core/css/variables.scss @@ -6,7 +6,7 @@ */ // SCSS darken/lighten function override @function nc-darken($color, $value) { - @return color.adjust($color, $lightness: -$value, $space: hsl); + @return color.adjust($color, $lightness: - $value, $space: hsl); } @function nc-lighten($color, $value) { |