Add light color helpers

This commit is contained in:
Jeremy Thomas
2020-05-10 22:10:51 +01:00
parent f18da99551
commit 7224fc260c
26 changed files with 3110 additions and 2052 deletions

View File

@@ -108,3 +108,8 @@
@if type-of($color) != 'color'
@return $color
@return darken($color, $amount)
@function bulmaLighten($color, $amount)
@if type-of($color) != 'color'
@return $color
@return lighten($color, $amount)