如何在qtquickcontrols2.conf中定义颜色的阴影?

时间:2020-09-16 12:29:53

标签: qt qml qtquick2

我正在尝试像这样在qtquickcontrols2.conf文件中定义应用程序的样式:

[Controls]
Style=Material

[Material]
Theme=Light
Variant=Dense
Accent=DeepOrange
Primary=Indigo
Foreground=Blue
Background=Grey

对于四种颜色(AccentPrimaryForegroundBackground)中的每一种,我也想指定shade。但是我找不到应该使用的语法。

这可能吗?

1 个答案:

答案 0 :(得分:1)

当前不可能。您可以在根对象上设置它:

ApplicationWindow {
    // ...

    Material.foreground: Material.color(Material.Blue, Material.ShadeA100)
}

这将传播到应用程序中的所有其他控件。