CHange primary colors for light and dark theme

This commit is contained in:
Maciej Pędzich 2023-05-25 17:10:14 +02:00
parent a8de9e82fd
commit f11bdcf22b

View File

@ -17,8 +17,14 @@ export default createVuetify({
themes: {
light: {
colors: {
primary: '#1867C0',
secondary: '#5CBBF6'
primary: '#3f51b5',
secondary: '#5cbbf6'
}
},
dark: {
colors: {
primary: '#1a237e',
secondary: '#3949ab'
}
}
}