[Vuejs]-Vuetify change input slot color

0👍

You can change all your colors in the src/plugins/vuetify.js file.

For example:

// src/plugins/vuetify.js

import Vue from 'vue'
import Vuetify from 'vuetify/lib'

const vuetify = new Vuetify({
  theme: {
    themes: {
      light: {
        primary: '#3f51b5',
        secondary: '#b0bec5',
        accent: '#8c9eff',
        error: '#b71c1c',
      },
    },
  },

Documentation on themes is here.

Leave a comment