lux-shell/components/StyledText.qml
2025-09-05 15:48:24 -04:00

12 lines
230 B
QML

import qs.config
import QtQuick
Text {
font.family: Theme.fontFamily
color: Theme.palette.basecontent
Behavior on color {
ColorAnimation {
duration: Styling.animations.speed.fast
}
}
}