diff options
author | hwspeedy <ns@bigbear.dk> | 2024-04-10 22:48:58 +0200 |
---|---|---|
committer | hwspeedy <ns@bigbear.dk> | 2024-04-10 22:48:58 +0200 |
commit | f095e196aca5ce7a0f7fc1ba9836ffd559cebc52 (patch) | |
tree | 8d8350aeb8f117fdeefbd6474e959ece384e3565 /shell | |
parent | 1923545ec41113fbdddd4a774def04cfe458e5ca (diff) |
FIX Correcting blue color to correct hardinfo2 blue color to improve FIX #22
Diffstat (limited to 'shell')
-rw-r--r-- | shell/shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/shell.c b/shell/shell.c index 26b6675d..f9aeb0c3 100644 --- a/shell/shell.c +++ b/shell/shell.c @@ -361,7 +361,7 @@ static ShellNote *note_new(void) GtkWidget *hbox, *icon, *button; GtkWidget *border_box; GdkColor info_default_border_color = { 0, 0x0000, 0xad00, 0x9d00 }; - GdkColor info_default_fill_color = { 0, 0x0000, 0x0000, 0xbf00 }; + GdkColor info_default_fill_color = { 0, 0x4000, 0x6000, 0xff00 }; note = g_new0(ShellNote, 1); note->label = gtk_label_new(""); |