Skip to content

Commit 33d2124

Browse files
committed
fix: Color order
1 parent c89ff80 commit 33d2124

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/desktop/src/widget_factory.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ impl WidgetFactory {
268268
&widget_config.background_effect_color
269269
{
270270
let color = csscolorparser::parse(color_str)?.to_rgba8();
271-
Some((color[3], color[0], color[1], color[2]))
271+
Some((color[1], color[2], color[3], color[4]))
272272
} else {
273273
Some((18, 18, 18, 125))
274274
};

0 commit comments

Comments
 (0)