From 46bb80338ae9271206af7530c1b6105cb2181188 Mon Sep 17 00:00:00 2001 From: Ramforth Date: Mon, 3 Nov 2025 00:52:17 +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 9b2ee77..ccc4b79 100644 --- a/custom_theme_dark.json +++ b/custom_theme_dark.json @@ -10,7 +10,8 @@ }, "CTkLabel": { "text_color": ["#ecd7b2", "#ecd7b2"], - "fg_color": "transparent" + "fg_color": "transparent", + "corner_radius": 0 }, "CTkButton": { "fg_color": ["#21498a", "#21498a"], diff --git a/custom_theme_light.json b/custom_theme_light.json index ac986f5..6a2d802 100644 --- a/custom_theme_light.json +++ b/custom_theme_light.json @@ -10,7 +10,8 @@ }, "CTkLabel": { "text_color": ["#000000", "#000000"], - "fg_color": "transparent" + "fg_color": "transparent", + "corner_radius": 0 }, "CTkButton": { "fg_color": ["#4077d1", "#4077d1"],