lux-shell/components/StyledText.qml
2025-09-05 17:30:09 -04:00

12 lines
230 B
QML

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