Use dark-theme friendly colors for compiler messages

These colors seem to provide good legibility for both light and dark
themes and seem to be better defaults regardless of what theme users
use.
This commit is contained in:
Jiří Techet 2021-11-20 18:18:18 +01:00
parent 04566236d3
commit 95c9947e6c
2 changed files with 8 additions and 8 deletions

View File

@ -94,7 +94,7 @@ line_height=0;0;
calltips=call_tips
# error indicator color
indicator_error=0xff0000
indicator_error=0xff3030
[settings]
# which characters should be skipped when moving (or included when deleting) to word boundaries

View File

@ -28,27 +28,27 @@
/* document status colors */
#geany-document-status-changed {
color: #ff0000;
color: #ff3030;
}
#geany-document-status-disk-changed {
color: #ff7f00;
color: #ee8000;
}
#geany-document-status-readonly {
color: #007f00;
color: #309030;
}
/* compiler message colors */
#geany-compiler-error {
color: #ff0000;
color: #ff3030;
}
#geany-compiler-context {
color: #7f0000;
color: #ee8000;
}
#geany-compiler-message {
color: #0000D0;
color: #006eff;
}
/* red "Terminal" label when terminal dirty */
#geany-terminal-dirty {
color: #ff0000;
color: #ff3030;
}