Fixed theming coloring issues

This commit is contained in:
Maddox Werts 2025-08-02 13:13:25 -04:00
parent 6a6dd68a32
commit 7fdd511c97

View file

@ -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 {