14 lines
192 B
JavaScript
14 lines
192 B
JavaScript
// vuetify.options.js
|
|
export default {
|
|
theme: {
|
|
dark: true,
|
|
themes: {
|
|
dark: {
|
|
primary: '#FF6E40'
|
|
},
|
|
light: {
|
|
primary: '#FF4500'
|
|
}
|
|
}
|
|
}
|
|
}
|