[geany/geany] 95c994: Use dark-theme friendly colors for compiler messages
Jiří Techet
git-noreply at xxxxx
Wed Dec 15 09:42:12 UTC 2021
Branch: refs/heads/master
Author: Jiří Techet <techet at gmail.com>
Committer: Jiří Techet <techet at gmail.com>
Date: Tue, 23 Nov 2021 15:20:19 UTC
Commit: 95c9947e6c54ce2570c25b7724264981a76bdc2e
https://github.com/geany/geany/commit/95c9947e6c54ce2570c25b7724264981a76bdc2e
Log Message:
-----------
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.
Modified Paths:
--------------
data/filedefs/filetypes.common
data/geany.css
Modified: data/filedefs/filetypes.common
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -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
Modified: data/geany.css
14 lines changed, 7 insertions(+), 7 deletions(-)
===================================================================
@@ -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;
}
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
More information about the Commits
mailing list