I've been experimenting with the Vuetify expansion panel UI component and I'm having trouble adding color to it. I tried using color="#26c6da" on multiple components, but it's not working as expected.
<template>
<v-container row fill-height justify-center style="max-width: 1200px" class="mx-auto" color="#26c6da">
<v-flex class="mx-auto" color="#26c6da">
<v-expansion-panel style="max-width: 1200px" class="mx-auto" color="#26c6da" >
<v-expansion-panel-content v-for="(item,i) in items" :key="i">
<div slot="header" class="headline font-weight-bold">{{item.header}}</div>
<v-card >
<v-card-text class="headline font-weight-bold">{{item.text}}</v-card-text>
</v-card>
</v-expansion-panel-content>
</v-expansion-panel>
</v-flex>
</v-container>
Here is a link to the component codepen:
https://codepen.io/anon/pen/OdJKqm?&editable=true&editors=101
Any suggestions on how to make this work?