Setup
Structure
Import
Import _library-import.scss
to use the whole library in your project.
Import _variables-general.scss
and {theme-file}.scss
if you only want to import the variables into a component.
_library-import.scss
/* General Variables Override */
@import '_variables-general.scss';
/* Selected theme */
@import 'themes/_theme-custom.scss';
// @import '../source/themes/_theme-light.scss'; // Default light theme
// @import '../source/themes/_theme-dark.scss'; // Default dark theme
/* Includes the entire source code (Besides the variables) */
@import '../source/_source.scss';
/* Includes all extensions */
@import '../extensions/gui-components/_index.scss';
_variables-general.scss
/* ----- Importing all general variables ----- */
@import '../source/_variables-general.scss';
/* ----- Add any override below ----- */