Thanks, I’m enjoying Camaleón. I did find the theme refresh issue to be somewhat frustrating, so I remapped the default Camaleón F8 to Alt+F8 and setup the following AutoHotKey shortcut to handle refreshing the app everytime I toggle the theme.
; F8 - Change/refresh theme in Sublime Text
F8:: ;F8 hotkey
IfWinActive ahk_class PX_WINDOW_CLASS
Send !{F8} ;Send Alt-F8 to Sublime
WinMinimize ahk_class PX_WINDOW_CLASS ; minimize Sublime to force refresh
WinActivate ahk_class PX_WINDOW_CLASS ; restore Sublime to complete refresh
Jordan