Update the app. bar background for the dark theme

This commit is contained in:
root
2023-04-14 02:58:56 +05:30
parent 32543a93f8
commit 19bed74086
2 changed files with 5 additions and 4 deletions
+1 -2
View File
@@ -3,8 +3,7 @@
<v-app-bar
app
dense
color="#efcac3"
light
color="appBarBG"
v-if="$vuetify.breakpoint.width > 1000 && !$store.getters['prefs/isEmbedded']"
class="desktop-buttons-container"
>
+4 -2
View File
@@ -47,7 +47,8 @@ export default new Vuetify({
success: '#efc3d2',
bgOne: '#FAFAFA',
bgTwo: '#ECEFF1'
bgTwo: '#ECEFF1',
appBarBG: '#efcac3'
},
dark: {
primary: '#9aa5ce',
@@ -59,7 +60,8 @@ export default new Vuetify({
success: '#9ece6a',
bgOne: '#212121',
bgTwo: '#424242'
bgTwo: '#424242',
appBarBG: '#24283b'
}
}
}