I want to use the variables defined in my vuetify theme in the style portion of my vue files. Its not mentioned on the docs and can't seem to find an answer anywahere, does anyone know how to do this?
e.g.
Vue.use(Vuetify, {
theme: {
primary: '#3f51b5',
}
})
now in my Home component I want to do:
<template>
<h1>My Title</h1>
</template>
<styles>
h1{
color:$primary; #from the vuetify theme
}
</styles>