Skip to content

Commit

Permalink
Merge pull request #3013 from techee/default_colors
Browse files Browse the repository at this point in the history
Use dark-theme friendly colors for compiler messages
  • Loading branch information
techee committed Dec 15, 2021
2 parents d031d6f + 95c9947 commit ed10489
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion data/filedefs/filetypes.common
Expand Up @@ -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
Expand Down
14 changes: 7 additions & 7 deletions data/geany.css
Expand Up @@ -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;
}

0 comments on commit ed10489

Please sign in to comment.