Changed primary/secondary colours to branded

This commit is contained in:
Ben Arc
2021-06-29 02:10:30 +01:00
parent c39dfbaee2
commit b0c0b9f851
29 changed files with 90 additions and 93 deletions
+2 -2
View File
@@ -118,7 +118,7 @@ Vue.component('lnbits-extension-list', {
<q-item-section side>
<q-avatar size="md"
:color="(extension.isActive)
? (($q.dark.isActive) ? 'deep-purple-5' : 'deep-purple')
? (($q.dark.isActive) ? 'primary' : 'primary')
: 'grey-5'">
<q-icon :name="extension.icon" :size="($q.dark.isActive) ? '21px' : '20px'"
:color="($q.dark.isActive) ? 'blue-grey-10' : 'grey-3'"></q-icon>
@@ -219,7 +219,7 @@ Vue.component('lnbits-payment-details', {
</div>
<div class="row" v-for="entry in extras">
<div class="col-3">
<q-badge v-if="hasTag" color="purple" text-color="white">
<q-badge v-if="hasTag" color="secondary" text-color="white">
extra
</q-badge>
<b>{{ entry.key }}</b>:
+1 -1
View File
@@ -36,8 +36,8 @@ $themes: (
@each $theme, $colors in $themes {
@each $name, $color in $colors {
@if $name == 'dark' {
body.body--dark [data-theme='#{$theme}'],
[data-theme='#{$theme}'] .q-drawer--dark,
body.body--dark [data-theme='#{$theme}'] .q-layout,
[data-theme='#{$theme}'] .q-menu--dark {
background: $color !important;
}