The app was originally split up into a structure like this:
- base (folder)
- _colors.scss
- _fonts.scss
- _sizes.scss
- _includes.scss
- site.scss
- _<otherareas>.scss
To make the stylesheets I moved the relevant colors from the _colors.scss file to the new stylesheet (red.scss, green.scss, etc.) and had those file include the old stylesheet (site.scss).
$primary-color:#0D58A6; $primary-color-hover:#04376C; $secondary-color:#FF9900; $secondary-color-hover:#A66300; @import "_site";