Skip to content

Commit

Permalink
fix: default vuetify theme color
Browse files Browse the repository at this point in the history
Signed-off-by: Pedro Lamas <pedrolamas@gmail.com>
  • Loading branch information
pedrolamas committed Feb 16, 2024
1 parent dbe2c08 commit 784a3e8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/plugins/vuetify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,24 +23,24 @@ export default new Vuetify({
},
themes: {
dark: {
primary: colors.blue.base,
'primary-offset': colors.blue.base,
primary: '#2196F3',
'primary-offset': '#2E75AE',
secondary: '#888888', // colors.grey.darken1,
'card-heading': '#333337',
btncolor: '#4A4A4F',
drawer: '#28282B',
appbar: '#1E1E20',
logo: colors.blue.base
logo: '#2196F3'
},
light: {
primary: colors.blue.darken2,
'primary-offset': colors.blue.darken2,
primary: '#2196F3',
'primary-offset': '#2E75AE',
secondary: colors.grey.lighten1,
'card-heading': '#E9E9E9',
btncolor: '#E9E9E9',
drawer: '#F4F4F4',
appbar: '#FFFFFF',
logo: colors.blue.darken2
logo: '#2196F3'
}
}
}
Expand Down

0 comments on commit 784a3e8

Please sign in to comment.