# All the SCSS files inside resources/assets/styles/mian.scss - where are they saved?

**URL:** https://discourse.roots.io/t/all-the-scss-files-inside-resources-assets-styles-mian-scss-where-are-they-saved/13324
**Category:** sage
**Tags:** sage8, gulp, webpack, sage9
**Created:** 2018-08-13T06:53:19Z
**Posts:** 4

## Post 1 by @Mais_Cule — 2018-08-13T06:53:19Z

I want to have an option to choose different color scheme in the customizer section.

e…g. user can choose green theme or blue theme.

In the source code i cant find main.scss file so I can replace it.

I’m new to development. so i just want to know where is main.scss saved?

---

## Post 2 by @knowler — 2018-08-13T08:49:48Z

The `main.scss` and [the partials imported by that file](https://github.com/roots/sage/blob/master/resources/assets/styles/main.scss) are located in [`resources/assets/styles`](https://github.com/roots/sage/tree/master/resources/assets/styles). Those are source files — not the stylesheet the theme enqueues. When you run the `build` command, the built `main.css` will be located in `dist/styles`.

---

## Post 3 by @mmirus — 2018-08-13T20:53:38Z

@Mais_Cule there’s a [post here](https://discourse.roots.io/t/sage-and-color-schemes-light-and-dark-version-for-example/10804) by @MWDelaney that may help you get started.

---

## Post 4 by @Mais_Cule — 2018-08-13T23:23:37Z

Thank you very much! exactly what i was looking for.
