The new version of hshassets work slightly different to former version.
It desolve the dependence to hshassets by generate a css file to the project which includes all information formerly stayed in hshassets.
It desolve the dependences to hshassets by generate a css file to the project which includes all information formerly stayed in hshassets.
If you want to base your style on hshassets without any changes you can do this even if no asset directory exists your project. In this case the stylesheets will be created on base of scss files saved in hshassets. The compiled css files will be saved in the project.
\ No newline at end of file
### You want to base your style on hshassets without any changes?
If you want to base your style on hshassets without any changes you can do this even if no asset directory exists your project. Just use the management command `buildassets`. In this case the stylesheets will be created on base of scss files saved in hshassets. The compiled css files will be saved in the project.
### How to set color scheme for your project?
The default color style of hshassets is `service` which we will use mostly I guess.
If you want to change the color scheme you have to import one of the following styles by adding these snippet to your _init.scss.
> @import 'cd/f1.scss';
> @import 'cd/f2.scss';
> @import 'cd/f3.scss';
> @import 'cd/f4.scss';
> @import 'cd/f5.scss';
> @import 'cd/service.scss';
> @import 'cd/zsw.scss';
After that line you have to import bulma files. You do that by adding the line `@import '_hshassets_style.scss';`. If you do not so the base style of hshassets will still be used.