forked from Shinonome/dots-hyprland
22 lines
516 B
QML
22 lines
516 B
QML
|
|
import qs.services
|
|
import qs.modules.common
|
|
import qs.modules.common.widgets
|
|
import QtQuick
|
|
|
|
Rectangle {
|
|
id: rect
|
|
readonly property string dialStyle: Config.options.background.clock.cookie.dialNumberStyle
|
|
|
|
StyledText {
|
|
anchors.centerIn: parent
|
|
color: Appearance.colors.colSecondaryHover
|
|
text: Qt.locale().toString(DateTime.clock.date, "dd")
|
|
font {
|
|
family: Appearance.font.family.expressive
|
|
pixelSize: 20
|
|
weight: 1000
|
|
}
|
|
}
|
|
}
|