Skip to content

Instantly share code, notes, and snippets.

@pointofpresence
Last active December 27, 2019 09:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pointofpresence/1246e9f8312e8dae86de716289d301dc to your computer and use it in GitHub Desktop.
Save pointofpresence/1246e9f8312e8dae86de716289d301dc to your computer and use it in GitHub Desktop.
encode sass variable
//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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment