#79: Change theme color UI

This commit is contained in:
jendib
2016-04-23 23:47:33 +02:00
parent 4e768e9103
commit 6e1276293f
6 changed files with 42 additions and 2 deletions
@@ -37,7 +37,7 @@ public class ThemeResource extends BaseResource {
// Build the stylesheet
StringBuilder sb = new StringBuilder();
sb.append(new Selector(".navbar")
.rule("background-color", themeConfig.getString("color", "inherit")));
.rule("background-color", themeConfig.getString("color", "#263238")));
return Response.ok().entity(sb.toString()).build();
}