From 3255f402c845d8510be91eea77b25ab3ca33c1af Mon Sep 17 00:00:00 2001 From: koffeejava Date: Sat, 14 Mar 2026 18:28:08 -0600 Subject: [PATCH] changed icons to be dark after 6:30 pm --- src/icon-list.cr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/icon-list.cr b/src/icon-list.cr index 4c7bcde..4202298 100644 --- a/src/icon-list.cr +++ b/src/icon-list.cr @@ -8,14 +8,14 @@ def icon(id) if Time.local.minute < 10 time = (Time.local.hour.to_s + 0.to_s + Time.local.minute.to_s).to_i - if time > 1200 + if time > 1830 orange = "\e[38;5;235m" else orange = "\e[38;5;214m" end elsif Time.local.minute >= 10 time = (Time.local.hour.to_s + Time.local.minute.to_s).to_i - if time > 1200 + if time > 1830 orange = "\e[38;5;8m" else orange = "\e[38;5;214m"