Created
July 9, 2021 05:32
-
-
Save krcummings1/f8a7cb0c617318a91e35fd8793d8fb66 to your computer and use it in GitHub Desktop.
Vuetify Theme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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