Skip to content

Instantly share code, notes, and snippets.

@tleilax
Created September 26, 2022 13:35
Show Gist options
  • Save tleilax/0c37fd75ea968779e5d1a67a947e2d8e to your computer and use it in GitHub Desktop.
Save tleilax/0c37fd75ea968779e5d1a67a947e2d8e to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
@function con($color, $light, $dark, $threshold: 51) {
@return if(lightness($color) < $threshold, $light, $dark);
}
a {
color: con(#fff, #abc, #cde);
}
a {
color: #cde;
}
{
"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