This commit is contained in:
Patrick Alvin Alcala 2026-03-26 14:54:44 +08:00
parent 50def158c2
commit 82a0fd6eea
8 changed files with 56 additions and 535 deletions

View file

@ -0,0 +1,7 @@
@use 'sass:color'
@function lighten-color($hex, $amount)
@return color.mix(white, $hex, $amount)
@function darken-color($hex, $amount)
@return color.mix(black, $hex, $amount)