vulcan/themes/gstyle/layout/partials/theme.ejs
Martin Donnelly 4789944309 added theme
2017-09-01 11:16:00 +01:00

32 lines
882 B
Plaintext

<style type="text/css">
/*customize theme configurations*/
body{
background-color: <%= theme.themeConfig.bodyBgColor%>;
}
/*link color*/
a{
color: <%= theme.themeConfig.linkColor%>;
}
/*menu color*/
nav a,.menu-wrapper a{
color: <%= theme.themeConfig.menuFontColor%>;
}
.material-hamburger span{
background: <%= theme.themeConfig.menuFontColor%>;
}
/*full screen overlay menu backgroudn color*/
.nav-wrapper,.nav-toggle-icon:before{
background-color:<%= theme.themeConfig.themeColor%>;
}
article{
color: <%= theme.themeConfig.contentFontColor%>;
}
.main, article{
background: <%= theme.themeConfig.contentBgColor%>;
}
/*code block left border*/
pre, .highlight, .gist,figure.highlight{
/*border-left: 4px solid <%= theme.themeConfig.blockLeftBorder%>;*/
}
</style>