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;
&::selection {
background: rgba($session-color-green, 0.6);
@include themify($themes) {
background: themed('textHighlight');
}
}
}
}

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

Loading…
Cancel
Save