lux-shell/components/StyledText.qml
2025-09-05 22:41:21 -04:00

13 lines
296 B
QML

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