When working with the v-stepper component of VuetifyJS, it is easy to change the color of the steps themselves by using the `color` prop. But how can I alter the text of each step?
Specifically, I am looking to modify the color of the text that says Name of step 1 in the example below:
<v-stepper-step :complete="e1 > 1" step="1" color="red">Name of step 1</v-stepper-step>
Here is a screenshot for reference:
https://i.sstatic.net/OFsKz.png
For the full code and implementation details, you can check out this Codepen demo.