blob: a0d7467d5fc9c2d954334edd0a54bac10f67a40f [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">
<template>
<style>
html {
--primary-text-color: #F00BAA;
--header-background-color: #F01BAA;
--header-title-content: "MyGerrit";
--footer-background-color: #F02BAA;
}
</style>
</template>
</dom-module>