Last active
October 25, 2019 15:58
-
-
Save zapplebee/c49a2e3a655fdc0ef924243b005e7c6c to your computer and use it in GitHub Desktop.
SCSS Variables
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.keeps |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$very-red: #ff3322; | |
$very-blue: #1111ff; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.warning { | |
color: $very-red; | |
} | |
.primary { | |
color: $very-blue; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import "./design_system_colors.scss"; | |
@import "./design_system_core.scss"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$very-red: #ff0033; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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