blob: 031465513466ad22086c8178a621d84eb2b8c371 [file]
<dom-module id="my-plugin">
<script>
Gerrit.install(function(plugin) {
plugin.registerStyleModule('app-theme', 'myplugin-app-theme');
});
</script>
</dom-module>
<dom-module id="myplugin-app-theme">
<style>
html {
--primary-text-color: #F00BAA;
--header-background-color: #F01BAA;
--footer-background-color: #F02BAA;
}
</style>
</dom-module>