From 3f95ca04f4f7113e7696599168c9b656307fa873 Mon Sep 17 00:00:00 2001 From: dspwithaheart Date: Mon, 11 May 2020 20:38:54 +0200 Subject: [PATCH] added veutify --- src/assets/logo.svg | 1 + src/plugins/vuetify.js | 23 +++++++++++++++++++++++ vue.config.js | 5 +++++ 3 files changed, 29 insertions(+) create mode 100644 src/assets/logo.svg create mode 100644 src/plugins/vuetify.js create mode 100644 vue.config.js diff --git a/src/assets/logo.svg b/src/assets/logo.svg new file mode 100644 index 0000000..145b6d1 --- /dev/null +++ b/src/assets/logo.svg @@ -0,0 +1 @@ +Artboard 46 diff --git a/src/plugins/vuetify.js b/src/plugins/vuetify.js new file mode 100644 index 0000000..8a460c8 --- /dev/null +++ b/src/plugins/vuetify.js @@ -0,0 +1,23 @@ +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' + }, + }, + }, +}); diff --git a/vue.config.js b/vue.config.js new file mode 100644 index 0000000..ef6e86b --- /dev/null +++ b/vue.config.js @@ -0,0 +1,5 @@ +module.exports = { + "transpileDependencies": [ + "vuetify" + ] +} \ No newline at end of file