Skip to content

Instantly share code, notes, and snippets.

@zapplebee
Last active October 25, 2019 15:58
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 zapplebee/c49a2e3a655fdc0ef924243b005e7c6c to your computer and use it in GitHub Desktop.
Save zapplebee/c49a2e3a655fdc0ef924243b005e7c6c to your computer and use it in GitHub Desktop.
SCSS Variables
$very-red: #ff3322;
$very-blue: #1111ff;
.warning {
color: $very-red;
}
.primary {
color: $very-blue;
}
@import "./design_system_colors.scss";
@import "./design_system_core.scss";
$very-red: #ff0033;
@import "./design_system_colors.scss";
// overwrite only the variable I have defined in my local colors.scss
@import "./theme_colors.scss";
//apply my changes to the core
@import "./design_system_core.scss";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment