fix highlight of text selected for light mode

pull/1377/head
Audric Ackermann 5 years ago
parent d7e1d014a4
commit 6e993da510
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -38,7 +38,9 @@ textarea {
user-select: text; user-select: text;
&::selection { &::selection {
background: rgba($session-color-green, 0.6); @include themify($themes) {
background: themed('textHighlight');
}
} }
} }
} }

@ -25,6 +25,7 @@ $themes: (
textColor: $black, textColor: $black,
textColorSubtle: #a0a0a0, textColorSubtle: #a0a0a0,
textColorOpposite: $white, textColorOpposite: $white,
textHighlight: rgba($black, 0.2),
// inbox // inbox
inboxBackground: $white, inboxBackground: $white,
// buttons // buttons
@ -74,6 +75,7 @@ $themes: (
textColor: $white, textColor: $white,
textColorSubtle: #a0a0a0, textColorSubtle: #a0a0a0,
textColorOpposite: $black, textColorOpposite: $black,
textHighlight: rgba($accentDarkTheme, 0.6),
// inbox // inbox
inboxBackground: linear-gradient(180deg, #171717 0%, #121212 100%), inboxBackground: linear-gradient(180deg, #171717 0%, #121212 100%),
// buttons // buttons

Loading…
Cancel
Save