I took this approach:

I edited the geany.css file as follows:

/* Add these rules to the top of geany.css file to make dark */

* {
    background-color: rgb(25, 25, 25);
    border-color: rgb(25, 25, 25);
    color: rgb(150, 150, 150);
}

button,
button *,
*:hover,
*:hover>* {
    background-color: rgb(150, 150, 150);
    color: black;
}

and here is the result:
simpleDarkGeany


Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: <geany/geany/issues/1344/1153270215@github.com>