diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2023-09-30 21:06:11 +0200 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2023-09-30 21:06:11 +0200 |
commit | 6f3be6d907f9dad9bd0d1b725d3609be0e7ce4df (patch) | |
tree | 3780288dbbc4d91e601f1872999680fed05f20ca | |
parent | c11fb75ca42c306645d9aa13ecd2b4af37561092 (diff) | |
download | saw-6f3be6d907f9dad9bd0d1b725d3609be0e7ce4df.zip |
colors
-rw-r--r-- | source/saw/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/saw/main.c b/source/saw/main.c index 45ca6cc..3add53a 100644 --- a/source/saw/main.c +++ b/source/saw/main.c @@ -429,7 +429,7 @@ static void saw_ui_compose(i64 x0, i64 y0, i64 width, i64 height) { nvgRect(saw_nvg, x + border, y + border, w - border * 2, h - border * 2); nvgFillColor(saw_nvg, is_choosen ? nvgRGBA(240, 230, 200, 255) - : is_playing ? nvgRGBA(255, 230, 200, 255) + : is_playing ? nvgRGBA(240, 210, 180, 240) : has_cursor ? nvgRGBA(210, 210, 255, 255) : nvgRGBA(180, 180, 180, 220)); nvgFill(saw_nvg); |