From c7355901c70b06a8a3d7c75e7629f0bf84deef96 Mon Sep 17 00:00:00 2001 From: MikeTheWatchGuy Date: Sat, 27 Oct 2018 00:24:31 -0400 Subject: [PATCH] Color changes --- Demo_Desktop_Widget_psutil_Dashboard.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Demo_Desktop_Widget_psutil_Dashboard.py b/Demo_Desktop_Widget_psutil_Dashboard.py index 2029a166..134551be 100644 --- a/Demo_Desktop_Widget_psutil_Dashboard.py +++ b/Demo_Desktop_Widget_psutil_Dashboard.py @@ -96,8 +96,8 @@ def main(): disk_graph_write = DashGraph(window.FindElement('_GRAPH_DISK_WRITE_'), diskio.write_bytes, '#be45be') disk_graph_read = DashGraph(window.FindElement('_GRAPH_DISK_READ_'), diskio.read_bytes, '#5681d8') - cpu_usage_graph = DashGraph(window.FindElement('_GRAPH_CPU_USAGE_'), 0, '#56d856') - mem_usage_graph = DashGraph(window.FindElement('_GRAPH_MEM_USAGE_'), 0, '#5681d8') + cpu_usage_graph = DashGraph(window.FindElement('_GRAPH_CPU_USAGE_'), 0, '#d34545') + mem_usage_graph = DashGraph(window.FindElement('_GRAPH_MEM_USAGE_'), 0, '#BE7C29') # ---------------- main loop ---------------- while (True):