@@ -140,7 +140,7 @@ the `scss/` folder.
140140
141141## Customize Bootstrap and Barceloneta components
142142
143- The base ` theme /theme.scss` file provides all imports of the dependent Bootstrap
143+ The base ` scss /theme.scss` file provides all imports of the dependent Bootstrap
144144and Barceloneta resources to build the default Classic UI theme.
145145As a convenience ` bobtemplates.plone ` has created three files to customize
146146variables, maps and custom SCSS code.
@@ -153,8 +153,15 @@ scss/_variables.scss
153153
154154### SCSS and root variables
155155
156- - show example how to override variables
157- - complete list of variables below
156+ To set a custom font you have three variables you can modify:
157+
158+ ``` scss
159+ $font-family-sans-serif : " Roboto" , " Helvetica Neue" , Helvetica , Arial , sans-serif !default ;
160+ $font-family-condensed : " Roboto Condensed" , " Arial Narrow" , sans-serif !default ; // just on toolbar
161+ $font-family-serif : Georgia , " Times New Roman" , Times , serif !default ;
162+ ```
163+
164+ TODO: Link to training docs or take parts over here?
158165
159166### Properties
160167
@@ -187,7 +194,7 @@ If you have a custom workflow state you can add your state color to the default
187194
188195``` scss
189196$custom-state-colors : (
190- " my-custom-state-id" : #ff0000 ;
197+ " my-custom-state-id" : " #ff0000" ;
191198);
192199
193200// Merge the maps
0 commit comments