Is there a way to change the text color of v-tooltips components without affecting the tooltip background color? I attempted to inspect the element, but the tooltip only appears on hover, making it impossible to inspect.
Below is the code snippet:
<div v-if="this.nbFiltersActive !=0">
<v-btn
v-if="this.toggleSettingsBtn == true"
fab
class="active-filters-alert"
color="red"
tile
dark
@click.stop="drawerSettings = true"
>
<v-tooltip
nudge-bottom="610"
nudge-left="88"
open-delay="500"
color=#696969
>
<template #activator="{ on }">
<span v-on="on" :color="textLightGrey">{{nbFiltersActive}}</span>
</template>
<span>You have filters applied</span>
</v-tooltip>
</v-btn>
</div>
I have also checked the vuetify documentation, but could not find any attribute for changing the text color specifically for v-tooltip, only for the background-color.