Skip to content

Instantly share code, notes, and snippets.

@babsgosgens
Last active December 21, 2015 01:09
Show Gist options
  • Save babsgosgens/6225629 to your computer and use it in GitHub Desktop.
Save babsgosgens/6225629 to your computer and use it in GitHub Desktop.
@function weight-number-to-string($weight)
{
@if $weight == 100 { @return "ultra-light"; }
@if $weight == 200 { @return "light"; }
@if $weight == 300 { @return "book"; }
@if $weight == 400 { @return "regular"; }
@if $weight == 500 { @return "medium"; }
@if $weight == 600 { @return "semi-bold"; }
@if $weight == 700 { @return "bold"; }
@if $weight == 800 { @return "extra-bold"; }
@if $weight == 900 { @return "heavy"; }
@else {
@warn "Not a valid weight";
@return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment