You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

vuetify.js 421B

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