I'm new to Foundation and special to SCSS. I aks my self, what the best practice is, to overwrite defaults, like colors and fontsizes.
There is a similar question for Bootstrap, which I would accept as the right answer: Overriding Bootstrap variables without touching Bower
How would you solve this with Foundation?
Ok, to make it more clear. I have a folder structure like this:
├── app
├── app.js
├── bower.json
├── bower_components
│ ├── foundation
│ ├── bower.json
│ ├── css
│ ├── js
│ ├── package.json
│ └── scss
│ ├── foundation
│ │ ├── _functions.scss
│ │ ├── _settings.scss
│ └── components
│ ├── foundation.scss
│ └── normalize.scss
├── gulpfile.js
├── index.html
├── scss
├── app.scss
└── theme
├── _settings.scss
└── theme.scss
When I change the desired variables my theme settings partials, nothing seems to happen. I just don't want touch anything from bower.
My app.scss
file imports the bower foundation.scss
and theme.scss
which then loads my settings partial.