diff --git a/components/Theme/Theme.vue b/components/Theme/Theme.vue index 700634fb7..6b38a4a16 100644 --- a/components/Theme/Theme.vue +++ b/components/Theme/Theme.vue @@ -1,5 +1,5 @@ @@ -10,6 +10,10 @@ export default { dark: { type: Boolean, required: false + }, + customStyles: { + type: Object, + required: false } }, computed: { @@ -18,6 +22,9 @@ export default { 'mdc-theme--dark': this.dark } } + }, + styles() { + return this.customStyles } }