From 2f773657a1717f7511df4e176d012b9f48bac453 Mon Sep 17 00:00:00 2001 From: Ramforth Date: Mon, 3 Nov 2025 00:49:59 +0100 Subject: [PATCH] Fix: Add missing border_width to CTkFrame in custom themes --- custom_theme_dark.json | 3 ++- custom_theme_light.json | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/custom_theme_dark.json b/custom_theme_dark.json index 9401478..9b2ee77 100644 --- a/custom_theme_dark.json +++ b/custom_theme_dark.json @@ -5,7 +5,8 @@ "CTkFrame": { "fg_color": ["#121212", "#121212"], "border_color": ["#333333", "#333333"], - "corner_radius": 8 + "corner_radius": 8, + "border_width": 0 }, "CTkLabel": { "text_color": ["#ecd7b2", "#ecd7b2"], diff --git a/custom_theme_light.json b/custom_theme_light.json index ed9335a..ac986f5 100644 --- a/custom_theme_light.json +++ b/custom_theme_light.json @@ -5,7 +5,8 @@ "CTkFrame": { "fg_color": ["#ecd7b2", "#ecd7b2"], "border_color": ["#cccccc", "#cccccc"], - "corner_radius": 8 + "corner_radius": 8, + "border_width": 0 }, "CTkLabel": { "text_color": ["#000000", "#000000"],