Skip to content

Instantly share code, notes, and snippets.

View seuck's full-sized avatar

Antonio Bianchetti seuck

  • Groundfog
  • Barcelona
View GitHub Profile
@certainlyakey
certainlyakey / library.scss
Last active March 5, 2024 16:40
URL-encode color SASS function / convert color to hex SASS function
//does not work with colors containing alpha
@function encodecolor($string) {
@if type-of($string) == 'color' {
$hex: str-slice(ie-hex-str($string), 4);
$string:unquote("#{$hex}");
}
$string: '%23' + $string;
@return $string;
}