plugin: rust-side modules + theme services with serde-typed config

This commit is contained in:
Damocles 2026-05-04 22:58:12 +02:00
parent a86e90e927
commit f34f3f2f4e
95 changed files with 2477 additions and 1011 deletions

View file

@ -1,13 +1,14 @@
import QtQuick
import "." as M
import "../services" as S
import NovaStats as NS
Rectangle {
property color accentColor: S.Theme.base05
property color accentColor: NS.ThemeService.base05
color: S.Theme.base01
opacity: Math.max(S.Theme.barOpacity, 0.85)
radius: S.Theme.radius
color: NS.ThemeService.base01
opacity: Math.max(NS.ThemeService.barOpacity, 0.85)
radius: NS.ThemeService.radius
border.color: accentColor
border.width: 1
}