popups improve contrast

This commit is contained in:
alfrix 2024-01-10 14:13:25 -03:00
parent 98da293cee
commit 78f1c691f6
6 changed files with 15 additions and 32 deletions

View File

@ -266,10 +266,6 @@ trough {
margin: .5em .5em; margin: .5em .5em;
} }
.popup {
background-color: @text-inv;
}
.action_bar { .action_bar {
/* min-width: 4.5em; */ /* min-width: 4.5em; */
/* min-height: 4.5em; */ /* min-height: 4.5em; */

View File

@ -165,10 +165,6 @@ textview .time {
color: @solarized-base1; color: @solarized-base1;
} }
.popup {
background-color: @solarized-cyan;
}
.dialog { .dialog {
border: @solarized-base03; border: @solarized-base03;
background-color: @solarized-base03; background-color: @solarized-base03;

View File

@ -15,7 +15,6 @@
@define-color active-dark #282828; @define-color active-dark #282828;
@define-color lines #a2a2a2; @define-color lines #a2a2a2;
@define-color slider #d81549; @define-color slider #d81549;
@define-color popup #006064;
* { * {
color: @text; color: @text;
@ -148,10 +147,6 @@ textview .time {
color: @lines; color: @lines;
} }
.popup {
background-color: @popup;
}
.dialog { .dialog {
border: @bg; border: @bg;
background-color: @bg; background-color: @bg;

View File

@ -142,10 +142,6 @@ textview .time {
color: #9E9E9E; color: #9E9E9E;
} }
.popup {
background-color: #006064;
}
.dialog { .dialog {
border: 0; border: 0;
background-color: #121212; background-color: #121212;

View File

@ -10,7 +10,6 @@
@define-color warning #FFE082; @define-color warning #FFE082;
@define-color error #EF9A9A; @define-color error #EF9A9A;
@define-color echo #a1ef9a; @define-color echo #a1ef9a;
@define-color popup #006064;
@define-color textview #212121; @define-color textview #212121;
* { * {
@ -196,10 +195,6 @@ textview .time {
color: @border; color: @border;
} }
.popup {
background-color: @popup;
}
.dialog { .dialog {
border: @border; border: @border;
background-color: @bg; background-color: @bg;

View File

@ -4,12 +4,14 @@
@define-color color4 #A7E100; @define-color color4 #A7E100;
@define-color bg #13181C; @define-color bg #13181C;
@define-color active #324A5E; @define-color active #324A5E;
@define-color echo #007D70;
@define-color error #981E1F; @define-color error #981E1F;
@define-color warning #f9a825; @define-color warning #F9A825;
@define-color warning-text #434343;
@define-color text white; @define-color text white;
@define-color text-inv black; @define-color text-inv black;
@define-color lines #cccccc; @define-color lines #cccccc;
@define-color switch-scale-bg #3584e4; @define-color switch-scale-bg #3584E4;
* { * {
color: @text; color: @text;
@ -127,10 +129,6 @@ textview .time {
color: @lines; color: @lines;
} }
.popup {
background-color: @text-inv;
}
.dialog { .dialog {
border: @bg; border: @bg;
background-color: @bg; background-color: @bg;
@ -181,12 +179,19 @@ textview .time {
color: @text-inv; color: @text-inv;
} }
.warning { .message_popup_echo {
background-color: rgba(30, 204, 39, 0.7); background-color: @echo;
} }
.error { .message_popup_warning {
background-color: rgba(204, 30, 30, 0.7); background-color: @warning;
}
.message_popup_warning label {
color: @warning-text;
}
.message_popup_error {
background-color: @error;
} }
.keyboard_pad { .keyboard_pad {