Skip to content

Instantly share code, notes, and snippets.

@robwierzbowski
Last active November 2, 2017 02:43
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 robwierzbowski/4a3d7f86f189043444c285dd2c0895a8 to your computer and use it in GitHub Desktop.
Save robwierzbowski/4a3d7f86f189043444c285dd2c0895a8 to your computer and use it in GitHub Desktop.
Example PostCSS variables usage
/* vars.css */
$off-black: hsl(0, 0%, 14%);
$serif-family: "Charter BT", "Times New Roman", serif;
/* component style.css */
@import 'vars.css';
.firstName {
color: $off-black;
font-family: $serif-family;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment