From 7fdd511c97df104c80440b0dc5beb8eccb2dc382 Mon Sep 17 00:00:00 2001 From: Maddox Werts Date: Sat, 2 Aug 2025 13:13:25 -0400 Subject: [PATCH] Fixed theming coloring issues --- project/ui/calculation.slint | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/project/ui/calculation.slint b/project/ui/calculation.slint index 1b1fb38..b960a6f 100644 --- a/project/ui/calculation.slint +++ b/project/ui/calculation.slint @@ -1,4 +1,4 @@ -import { VerticalBox, Button } from "std-widgets.slint"; +import { VerticalBox, Button, Palette } from "std-widgets.slint"; export component Calculation inherits PopupWindow { width: 400px; @@ -10,7 +10,9 @@ export component Calculation inherits PopupWindow { Rectangle { height: 100%; width: 100%; - background: lightgray; + background: Palette.background; + drop-shadow-color: Palette.border; + drop-shadow-blur: 50px; } VerticalBox {