sass variable file code example
Example 1: sass use variables from another file
//_variables.scss
$light: #f5f5f5;
$dark: ##2e3033;
//_theme.scss
@import './_variables'; //relative path to file
body {
background-color: $dark;
}
Example 2: sass variables across files
// When importing the master, you leave out the underscore, and it
// will look for a file with the underscore. This prevents the SCSS
// compiler from generating a CSS file from it.
@import "assets/master";
// Then do the rest of my CSS afterwards:
.text { color: $accent; }