`<v-text-field
id="loginPasswordId"
ref="password"
v-model="password"
class="login-input"
dense
:disabled="loading"
:hint="hello world"
:loading="loading"
maxlength="16"
outlined
:rules="[rules.required,rules.passwordLength]"
:type="passwordShow ? 'text' : 'password'"
@keyup.enter="submit">
</v-text-field>`
Looking to modify the color of the hint attribute in vue.js. Any suggestions or solutions are greatly appreciated!