Browse Source

Merge branch 'v2' of https://github.com/VCVRack/Rack-private into v2

tags/v2.3.0
richiehindle 1 year ago
parent
commit
e2765e7026
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/ui/common.cpp

+ 1
- 1
src/ui/common.cpp View File

@@ -74,7 +74,7 @@ void setTheme(NVGcolor bg, NVGcolor fg) {

void refreshTheme() {
if (settings::uiTheme == "light") {
setTheme(nvgRGB(0xe8, 0xe8, 0xe8), nvgRGB(0x00, 0x00, 0x00));
setTheme(nvgRGB(0xfb, 0xfb, 0xfb), nvgRGB(0x04, 0x04, 0x04));
}
else if (settings::uiTheme == "dark") {
setTheme(nvgRGB(0x00, 0x00, 0x00), nvgRGB(0xff, 0xff, 0xff));


Loading…
Cancel
Save