mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-03-28 11:50:32 +00:00
* origin/develop: (42 commits) [release] 0.5.0 [build] 0.5.0 fix tab tooltip create docs for layout [release] 0.4.3 [build] 0.4.3 fix releases tree, load versions and changelog externaly fix build structure [release] 0.4.2 [build] 0.4.2 fix value in select with option with v-if #198 fix tooltip errors in console #188 fix dialog with input closing after typing #183 fix switch not updating state after value change #200 improve documentation performance generate responsive offsets create offset classes create responsive grid fix display of total items on md-table-pagination (#190) #181 refactor columns ...
66 lines
977 B
JavaScript
66 lines
977 B
JavaScript
import Vue from 'vue';
|
|
import VueMaterial from '../../src';
|
|
|
|
Vue.use(VueMaterial);
|
|
|
|
Vue.material.registerTheme({
|
|
default: {
|
|
primary: 'blue',
|
|
accent: 'pink'
|
|
},
|
|
blue: {
|
|
primary: 'blue',
|
|
accent: 'pink'
|
|
},
|
|
indigo: {
|
|
primary: 'indigo',
|
|
accent: 'pink'
|
|
},
|
|
brown: {
|
|
primary: 'brown',
|
|
accent: 'green'
|
|
},
|
|
purple: {
|
|
primary: 'purple',
|
|
accent: 'blue'
|
|
},
|
|
orange: {
|
|
primary: 'orange',
|
|
accent: 'purple'
|
|
},
|
|
green: {
|
|
primary: 'green',
|
|
accent: 'pink'
|
|
},
|
|
'light-blue': {
|
|
primary: 'light-blue',
|
|
accent: 'yellow'
|
|
},
|
|
teal: {
|
|
primary: 'teal',
|
|
accent: 'orange'
|
|
},
|
|
'blue-grey': {
|
|
primary: 'blue-grey',
|
|
accent: 'blue'
|
|
},
|
|
cyan: {
|
|
primary: 'cyan',
|
|
accent: 'pink'
|
|
},
|
|
red: {
|
|
primary: 'red',
|
|
accent: 'pink'
|
|
},
|
|
white: {
|
|
primary: 'white',
|
|
accent: 'blue'
|
|
},
|
|
grey: {
|
|
primary: {
|
|
color: 'grey',
|
|
hue: 300
|
|
},
|
|
accent: 'indigo'
|
|
}
|
|
});
|