From 0305c04ed6590061cacbcc406b8d1a66ce055f7e Mon Sep 17 00:00:00 2001 From: kikuchi Date: Wed, 8 Jan 2025 14:54:36 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=E8=83=8C=E6=99=AF=E8=89=B2=E3=81=A8?= =?UTF-8?q?=E6=96=87=E5=AD=97=E8=89=B2=E3=82=92=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- clock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clock.py b/clock.py index 22225ac..15201b4 100644 --- a/clock.py +++ b/clock.py @@ -98,4 +98,4 @@ def update_time(recursion=True): # メインループの実行 update_time() root.mainloop() -print("時計アプリを終了しました。") \ No newline at end of file +print("時計アプリを終了しました。") From e437a387b63afb05466721e60a5b08f9f19c2193 Mon Sep 17 00:00:00 2001 From: kikuchi Date: Wed, 8 Jan 2025 15:31:19 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=E8=83=8C=E6=99=AF=E8=89=B2=E3=81=A8?= =?UTF-8?q?=E6=96=87=E5=AD=97=E8=89=B2=E3=82=92=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- clock.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clock.py b/clock.py index 15201b4..8db4964 100644 --- a/clock.py +++ b/clock.py @@ -5,8 +5,8 @@ from timezones import TIMEZONE_DICT # 定数 -BG_COLOR = "#FFA500" -TEXT_COLOR = "#333333" +BG_COLOR = "#5599FF" +TEXT_COLOR = "#57771F" NOTATION_12_HOUR = "12時制" NOTATION_24_HOUR = "24時制"