# Stylesheet > Cloudspire Stylesheet ## Install ```console $ npm install git+ssh://git@github.com:splitfire-cs/cs-stylesheet.git ``` ```css @import "./node_modules/cloudspire-stylesheet/index.css"; ``` ## Usage First of all, you can override all these custom properties according to your needs (here are default values): ```css :root { --Theme-font: Lato, 'Helvetica neue', Helvetica, Arial,sans-serif, sans-serif; --Theme-backgroundColor : #F0F3F4; --Theme-color: #333; --Theme-minWidth : 32em; --Theme-fontSize : 1.6rem; --Theme-paddingTop : 3em; --Theme-translate : 80%; --Theme-widthMenu : 12.5em; --Theme-widthScrollbar : 1.25em; --Theme-backgroundColorMenu : #1C2B36; --Theme-success: #27c24c; --Theme-danger : #f05050; --Theme-info : #23b7e5; } ``` --- ## Testing To generate a build: ```console $ npm run build ``` To generate the testing build. ```console $ npm run build-test ``` Basic visual tests are in `test/index.html`. ## Contributing Work on a branch, install dev-dependencies, respect coding style & run tests before submitting a bug fix or a feature. ```console $ git clone https://github.com/cloudspire-stylesheet/cs-stylesheet.git $ git checkout -b patch-1 $ npm install $ npm test ``` ## [Changelog](CHANGELOG.md) ## [License](LICENSE)