vuetify.js 542 B

12345678910111213141516171819202122232425262728
  1. import Vue from 'vue';
  2. import Vuetify from 'vuetify/lib';
  3. import zhHans from 'vuetify/es5/locale/zh-Hans';
  4. Vue.use(Vuetify);
  5. export default new Vuetify({
  6. theme: {
  7. options: {
  8. customProperties: true,
  9. },
  10. themes: {
  11. light: {
  12. primary: '#ee44aa',
  13. secondary: '#424242',
  14. accent: '#82B1FF',
  15. error: '#FF5252',
  16. info: '#2196F3',
  17. success: '#4CAF50',
  18. warning: '#FFC107'
  19. },
  20. },
  21. },
  22. lang: {
  23. locales: { zhHans },
  24. current: 'zh-Hans',
  25. },
  26. });