Styling of your app can be found in src/styles/shared-styles.html
.
Generate your own color scheme with Material Palette and click download Polymer
Now Replace next section
/* Primary colors */
--dark-primary-color: #F57C00;
--default-primary-color: #FF9800;
--light-primary-color: #FFE0B2;
--text-primary-color: #212121; /* text / icons */
/* Accent colors */
--accent-color: #03A9F4;
/* Background colors */
--primary-background-color: #FFE0B2;
/* Text colors */
--primary-text-color: #212121;
--secondary-text-color: #727272;
--disabled-text-color: #BDBDBD;
/* Other colors */
--divider-color: #B6B6B6;
Additionally it's possible to edit/add tags which is used on speakers and session
/* Tags colors */
--general: #bdbdbd;
--android: #78c257;
--web: #2196f3;
--cloud: #3f51b5;
--community: #e91e63;
--angular-js: #e0343d;
...
Color and images for header can be configured via data/hoverboard.config.json
in pages
object. For instance:
"pages": {
"home": {
"headerSettings": {
"backgroundColor": "#03a9f4",
"backgroundImage": "/images/backgrounds/home.png",
"fontColor": "#fff",
"tabBarColor": "#fff"
}
},
...
}
Edit Web app colors in manifest.json
"background_color": "#F57C00",
"theme_color": "#F57C00"
and in index.html
<meta name="theme-color" content="#F57C00">
Learn how to deploy the app to the web.