Just in case someone wonders..
I knew how to change the color theme for the IDE (I prefer it dark to save on eye strain), but that left me with the basic Windows GUI colors(superbright) for the widgets and menus in contrast to the dark coding area, which still annoyed me.
With the help of Derron from www.syntaxbomb.com(where most of the ex-Blitz Basic coders hang out) and the docs(well mostly Derron)
, I've managed to also change the widgets and menu colors. E.g:
1st attempt.
2nd and current config.
*) for current layout see
latest post.
Tried a few different combo's and what works best for me during night and daytime is;
1) Selecting in
View->Color Scheme->Geany Tango Dark
2) Combine this with an additional theme from the folder
C:\Program Files (x86)\The Game Creators\AGK2\Tier 1\Editor\share\themes\
by adding the line
include "../share/themes/ClearlooksDarkOrange/gtk-2.0/gtkrc" to the file
C:\Program Files (x86)\The Game Creators\AGK2\Tier 1\Editor\data\geany.gtkrc (below line 41)
geany.gtkrc
# make close button on the editor's tabs smaller
style "geany-close-tab-button-style" {
GtkWidget::focus-padding = 0
GtkWidget::focus-line-width = 0
xthickness = 0
ythickness = 0
}
widget "*.geany-close-tab-button" style "geany-close-tab-button-style"
# use monospaced font in search entries for easier reading of regexp (#1907117)
style "geany-monospace" {
font_name = "Monospace"
}
widget "GeanyDialogSearch.*.GtkEntry" style "geany-monospace"
widget "GeanyDialogSearch.*.geany-search-entry-no-match" style "geany-monospace"
# set red background for GtkEntries showing unmatched searches
style "geany-search-entry-no-match-style" {
base[NORMAL] = "#ffff66666666"
text[NORMAL] = "#ffffffffffff"
}
widget "*.geany-search-entry-no-match" style "geany-search-entry-no-match-style"
# document status colors
style "geany-document-status-changed-style" {
fg[NORMAL] = "#ffff00000000"
fg[ACTIVE] = "#ffff00000000"
}
style "geany-document-status-disk-changed-style" {
fg[NORMAL] = "#ffff7fff0000"
fg[ACTIVE] = "#ffff7fff0000"
}
style "geany-document-status-readonly-style" {
fg[NORMAL] = "#00007fff0000"
fg[ACTIVE] = "#00007fff0000"
}
widget "*.geany-document-status-changed" style "geany-document-status-changed-style"
widget "*.geany-document-status-disk-changed" style "geany-document-status-disk-changed-style"
widget "*.geany-document-status-readonly" style "geany-document-status-readonly-style"
#include "../share/themes/MS-Windows/gtk-2.0/gtkrc"
#include "../share/themes/Nodoka-Midnight/gtk-2.0/gtkrc"
include "../share/themes/ClearlooksDarkOrange/gtk-2.0/gtkrc"
#include "../share/themes/ClearlooksDark/gtk-2.0/gtkrc"
#include "../share/themes/MurrinaNeoGraphite/gtk-2.0/gtkrc"
#include "../share/themes/Rezlooks-graphite/gtk-2.0/gtkrc"
Hope this of some use to someone out there who like me, can't stand staring at bright screens for to long.