vuetify.js 1.3 KB

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