[geany/geany] ed1048: Merge pull request #3013 from techee/default_colors
Jiří Techet
git-noreply at xxxxx
Wed Dec 15 09:42:06 UTC 2021
Branch: refs/heads/master
Author: Jiří Techet <techet at gmail.com>
Committer: GitHub <noreply at github.com>
Date: Wed, 15 Dec 2021 09:42:06 UTC
Commit: ed1048918a0a92dd8b001a46cb049c862b4aa173
https://github.com/geany/geany/commit/ed1048918a0a92dd8b001a46cb049c862b4aa173
Log Message:
-----------
Merge pull request #3013 from techee/default_colors
Use dark-theme friendly colors for compiler messages
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