vuetify.js 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. import colors from 'vuetify/es5/util/colors'
  2. export default {
  3. // Vuetify module configuration (https://go.nuxtjs.dev/config-vuetify)
  4. vuetify: {
  5. icons: {
  6. iconfont: 'fa' || 'mdi',
  7. },
  8. customVariables: ['~/assets/css/variables.scss'],
  9. customProperties: true,
  10. treeShake: true,
  11. theme: {
  12. dark: false,
  13. themes: {
  14. dark: {
  15. primary: colors.blue.darken2,
  16. accent: colors.grey.darken3,
  17. secondary: colors.amber.darken3,
  18. info: colors.teal.lighten1,
  19. warning: colors.amber.base,
  20. error: colors.deepOrange.accent4,
  21. success: colors.green.accent3
  22. },
  23. light: {
  24. ot_green: '#00ad8e',
  25. ot_light_green: '#a9e0d6',
  26. ot_dark_grey: '#2c3a48',
  27. ot_grey: '#777777',
  28. ot_light_grey: '#f5f5f5',
  29. ot_super_light_grey: '#ecf0f5',
  30. ot_danger: '#f56954',
  31. ot_success: '#00a65a',
  32. ot_warning: '#f39c12',
  33. ot_info: '#3c8dbc',
  34. ot_menu_color: '#b8c7ce',
  35. ot_content_color: '#ecf0f4',
  36. ot_white: '#ffffff'
  37. },
  38. }
  39. }
  40. }
  41. }