Skip to content

Commit 93bca1b

Browse files
author
Jens van Hellemondt
committed
✨ svg icons WIP 🚧
1 parent 7018c2a commit 93bca1b

2 files changed

Lines changed: 26 additions & 0 deletions

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import Vue from 'vue';
2+
import Vuetify from 'vuetify/lib';
3+
import nl from 'vuetify/es5/locale/nl';
4+
import icons from './icons';
5+
import themes from './theme';
6+
7+
Vue.use(Vuetify);
8+
export default new Vuetify({
9+
icons,
10+
lang: {
11+
locales: { nl },
12+
current: 'nl',
13+
},
14+
theme: {
15+
themes,
16+
},
17+
});
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
const light = {
2+
primary: '#2A73C5',
3+
};
4+
5+
const dark = {
6+
primary: '#2A73C5',
7+
};
8+
9+
export default { light, dark };

0 commit comments

Comments
 (0)