vuetify.js 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. theme: {
  10. dark: false,
  11. themes: {
  12. dark: {
  13. primary: colors.blue.darken2,
  14. accent: colors.grey.darken3,
  15. secondary: colors.amber.darken3,
  16. info: colors.teal.lighten1,
  17. warning: colors.amber.base,
  18. error: colors.deepOrange.accent4,
  19. success: colors.green.accent3
  20. },
  21. light: {
  22. ot_green: '#00ad8e',
  23. ot_light_green: '#a9e0d6',
  24. ot_dark_grey: '#2c3a48',
  25. ot_grey: '#777777',
  26. ot_light_grey: '#f5f5f5',
  27. ot_super_light_grey: '#ecf0f5',
  28. ot_danger: '#f56954',
  29. ot_success: '#00a65a',
  30. ot_warning: '#f39c12',
  31. ot_info: '#3c8dbc',
  32. ot_menu_color: '#b8c7ce',
  33. ot_white: '#ffffff'
  34. },
  35. }
  36. }
  37. }
  38. }