I'm using Nuxt and Vuetify. If I write <nuxt-link>
, Nuxt generates <a>
tag and the link text is underlined and blue.
I can remove the underline as follows:
a {
text-decoration: none;
}
Next, I want to fix the color. However, the color depends on the theme (light mode or dark mode).
How to get current mode text color?