made dollar green default colour for bitcoin cash

This commit is contained in:
Kadir Sekha 2017-11-17 15:43:04 +09:00
commit be5c7b4728
6 changed files with 31 additions and 14 deletions

View file

@ -33,18 +33,20 @@ $v-wallet-color-map: (
3: (color: #d0b136, name: 'Metallic Gold'),
4: (color: #9edd72, name: 'Feijoa'),
5: (color: #29bb9c, name: 'Shamrock'),
6: (color: #fab915, name: 'Observatory'),
7: (color: #77dada, name: 'Turquoise Blue'),
8: (color: #4a90e2, name: 'Cornflower Blue'),
9: (color: #484ed3, name: 'Free Speech Blue'),
10: (color: #9b59b6, name: 'Deep Lilac'),
11: (color: #e856ef, name: 'Free Speech Magenta'),
12: (color: #ff599e, name: 'Brilliant Rose'),
13: (color: #7a8c9e, name: 'Light Slate Grey')
6: (color: #26B03C, name: 'Dollar Green'),
7: (color: #fab915, name: 'Observatory'),
8: (color: #77dada, name: 'Turquoise Blue'),
9: (color: #4a90e2, name: 'Cornflower Blue'),
10: (color: #484ed3, name: 'Free Speech Blue'),
11: (color: #9b59b6, name: 'Deep Lilac'),
12: (color: #e856ef, name: 'Free Speech Magenta'),
13: (color: #ff599e, name: 'Brilliant Rose'),
14: (color: #7a8c9e, name: 'Light Slate Grey')
) !default;
/* Theme */
$v-default-wallet-color-index: 8 !default; // See $v-wallet-color-map
$v-default-wallet-color-index: 7 !default; // See $v-wallet-color-map
$v-default-cashwallet-color-index: 6 !default; // See $v-wallet-color-map
$v-subtle-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25) !default;
$v-hovering-box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.3) !default;
$v-subtle-radius: 3px !default;

View file

@ -8,6 +8,7 @@
/* background-color and color defaults should be the same */
$default-wallet-color: map-get( map-get($v-wallet-color-map, $v-default-wallet-color-index) , color);
$default-cashwallet-color: map-get( map-get($v-wallet-color-map, $v-default-cashwallet-color-index) , color);
.wallet-background-color-default {
background-color: $default-wallet-color;
@ -17,6 +18,10 @@ $default-wallet-color: map-get( map-get($v-wallet-color-map, $v-default-wallet-c
color: $default-wallet-color;
}
.cashwallet-color-default {
color: $default-cashwallet-color;
}
/* generate classes for all colors */
@each $id, $map in $v-wallet-color-map {
.wallet-color-#{$id} {