Created
April 11, 2023 00:04
Generated by SassMeister.com.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// Scales a color to be darker if it's light, or lighter if it's dark. Use this function to tint a color appropriate to its lightness. | |
/// | |
/// @param {Color} $color - Color to scale. | |
/// @param {Percentage} $scale [5%] - Amount to scale up or down. | |
/// @param {Percentage} $threshold [40%] - Threshold of lightness to check against. | |
/// | |
/// @returns {Color} A scaled color. | |
@function smart-scale($color, $scale: 5%, $threshold: 40%) { | |
@if lightness($color) > $threshold { | |
$scale: -$scale; | |
} | |
@return scale-color($color, $lightness: $scale); | |
} | |
$primary-color: #1779ba; | |
p { | |
color: smart-scale($primary-color); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
p { | |
color: #1673b1; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"sass": { | |
"compiler": "dart-sass/1.32.12", | |
"extensions": {}, | |
"syntax": "SCSS", | |
"outputStyle": "expanded" | |
}, | |
"autoprefixer": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment