Skip to content

Instantly share code, notes, and snippets.

@krcummings1
Created July 9, 2021 05:32
Show Gist options
  • Save krcummings1/f8a7cb0c617318a91e35fd8793d8fb66 to your computer and use it in GitHub Desktop.
Save krcummings1/f8a7cb0c617318a91e35fd8793d8fb66 to your computer and use it in GitHub Desktop.
Vuetify Theme
import Vue from 'vue';
import Vuetify from 'vuetify/lib/framework';
Vue.use(Vuetify);
export default new Vuetify({
theme: {
themes: {
light: {
primary: '#E05800', // orange
secondary: '#0D4494', // blue
accent: '#FF9956', // light orange
error: '#FF5252',
info: '#FFFFFF', // white
success: '#4CAF50',
warning: '#FFC107'
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment