mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-27 13:49:08 +08:00
15 lines
238 B
QML
15 lines
238 B
QML
import QtQuick
|
|
import FluentUI
|
|
|
|
Rectangle {
|
|
|
|
color: FluTheme.dark ? Qt.rgba(45/255,45/255,45/255,1) : Qt.rgba(226/255,230/255,234/255,1)
|
|
|
|
Behavior on color{
|
|
ColorAnimation {
|
|
duration: 300
|
|
}
|
|
}
|
|
|
|
}
|