git.lucas.co / cce-ui
GPU-accelerated UI toolkit (Vulkan)
git clone https://git.lucas.co/cce-ui.git

commit8880b913326b13bcb94cdd05f45658697e320eb6
parentef418f886e
authorLucas Galante <[email protected]>
date2026-07-05 12:38
fix: change ControlPanel background color to list_bg_color to enhance child control vibrancy and contrast

 src/widget/container/control_panel.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/widget/container/control_panel.rs b/src/widget/container/control_panel.rs
index 749dec7..16e3579 100644
--- a/src/widget/container/control_panel.rs
+++ b/src/widget/container/control_panel.rs
@@ -80,7 +80,7 @@ impl Element for ControlPanel {
     }
 
     fn color(&self) -> [f32; 4] {
-        colors::page_low_color()
+        colors::list_bg_color()
     }
 
     fn set_rect(&mut self, x: f32, y: f32, w: f32, h: f32) {