blob: bd29b9065ef161c6642c9538ceaeb54f0dd9f922 [file] [log] [blame]
<dom-module id="my-plugin">
<script>
Gerrit.install(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;
--header-title-content: "MyGerrit";
--footer-background-color: #F02BAA;
}
</style>
</dom-module>