lux-shell/widgets/StyledText.qml
2025-08-18 23:48:17 -04:00

13 lines
246 B
QML

import qs.config
import QtQuick
Text {
font.family: Theme.fontFamily
color: Theme.palette.basecontent
Behavior on color {
ColorAnimation {
duration: 200
easing.type: Easing.InOutQuad
}
}
}