# Bruut Sass

The Bruut Sass Package takes care of the visual part of things and can be installed via npm:

npm instal bruut-sass@latest --save-dev

This will install the package as a dev dependency. Once you've installed the package, you can use it in your SCSS files

@use "~bruut-design-system" as bruut;

Bruut is now registred under the bruut namespace and you can use all mixins and other tools provided in the system:

.example {
	@include bruut.breakpoint(tablet) {
		@include bruut.color(background-color, alpha-100);
	}
}

Learn more about how to configure and use the tools provided, or how to extend the Bruut Sass Package for every project.