<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 87.5 100"><defs><style>.cls-1{fill:#1697f6;}.cls-2{fill:#7bc6ff;}.cls-3{fill:#1867c0;}.cls-4{fill:#aeddff;}</style></defs><title>Artboard 46</title><polyline class="cls-1" points="43.75 0 23.31 0 43.75 48.32"/><polygon class="cls-2" points="43.75 62.5 43.75 100 0 14.58 22.92 14.58 43.75 62.5"/><polyline class="cls-3" points="43.75 0 64.19 0 43.75 48.32"/><polygon class="cls-4" points="64.58 14.58 87.5 14.58 43.75 100 43.75 62.5 64.58 14.58"/></svg> |
import Vue from 'vue'; | |||||
import Vuetify from 'vuetify/lib'; | |||||
Vue.use(Vuetify); | |||||
export default new Vuetify({ | |||||
theme: { | |||||
options: { | |||||
customProperties: true, | |||||
}, | |||||
themes: { | |||||
light: { | |||||
primary: '#ee44aa', | |||||
secondary: '#424242', | |||||
accent: '#82B1FF', | |||||
error: '#FF5252', | |||||
info: '#2196F3', | |||||
success: '#4CAF50', | |||||
warning: '#FFC107' | |||||
}, | |||||
}, | |||||
}, | |||||
}); |
module.exports = { | |||||
"transpileDependencies": [ | |||||
"vuetify" | |||||
] | |||||
} |