summaryrefslogtreecommitdiff
path: root/internal/constants/constants.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-02-16 22:56:41 +0200
committerPaul Buetow <paul@buetow.org>2026-02-16 22:56:41 +0200
commit0f35a55c0ca2beef550d7a3fb425c53ea7b5ce88 (patch)
tree8c9046cd4962ed81e5ea9e60794863797d64aa6c /internal/constants/constants.go
parent6798b669464d828c241554647b4fff68a62ca91d (diff)
Display GuestNice CPU metric as lime green segment above Nice
Expand the smoothed CPU array from [9] to [10] elements to include GuestNice (index 9). Drawn in lime green above Nice (green) in the CPU bar stack. Rename normalizePcts9 to normalizePcts. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'internal/constants/constants.go')
-rw-r--r--internal/constants/constants.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/constants/constants.go b/internal/constants/constants.go
index 82600d2..0022621 100644
--- a/internal/constants/constants.go
+++ b/internal/constants/constants.go
@@ -37,6 +37,7 @@ var (
LightBlue0 = RGB{0x00, 0x00, 0xcc}
Blue = RGB{0x00, 0x00, 0x88}
Green = RGB{0x00, 0x90, 0x00}
+ LimeGreen = RGB{0x50, 0xc8, 0x00}
LightGreen = RGB{0x00, 0xf0, 0x00}
Orange = RGB{0xff, 0x70, 0x00}
Purple = RGB{0xa0, 0x20, 0xf0}