moment/harmonyqml/components/Base/HStyle.qml

130 lines
4.0 KiB
QML
Raw Normal View History

2019-04-27 06:02:20 +10:00
pragma Singleton
import QtQuick 2.7
QtObject {
2019-04-29 01:01:38 +10:00
id: style
2019-04-27 06:02:20 +10:00
readonly property QtObject fontSize: QtObject {
2019-04-28 14:44:55 +10:00
property int smallest: 6
property int smaller: 8
property int small: 12
property int normal: 16
property int big: 24
property int bigger: 32
property int biggest: 48
2019-04-27 06:02:20 +10:00
}
readonly property QtObject fontFamily: QtObject {
2019-04-28 14:44:55 +10:00
property string sans: "SFNS Display"
property string serif: "Roboto Slab"
property string mono: "Hack"
}
2019-04-29 05:13:18 +10:00
property int radius: 5
2019-04-28 14:44:55 +10:00
readonly property QtObject colors: QtObject {
property color background0: Qt.hsla(0, 0, 0.8, 0.5)
property color background1: Qt.hsla(0, 0, 0.8, 0.7)
2019-04-29 01:01:38 +10:00
property color foreground: "black"
property color foregroundDim: Qt.hsla(0, 0, 0.2, 1)
property color foregroundError: Qt.hsla(0.95, 0.64, 0.32, 1)
2019-04-28 14:44:55 +10:00
}
2019-04-29 05:13:18 +10:00
readonly property QtObject controls: QtObject {
readonly property QtObject button: QtObject {
property color background: colors.background1
}
readonly property QtObject textField: QtObject {
property color background: colors.background1
}
readonly property QtObject textArea: QtObject {
property color background: colors.background1
}
}
2019-04-29 01:01:38 +10:00
2019-04-28 14:44:55 +10:00
readonly property QtObject sidePane: QtObject {
property color background: colors.background1
2019-04-29 05:13:18 +10:00
readonly property QtObject settingsButton: QtObject {
property color background: colors.background1
}
readonly property QtObject filterRooms: QtObject {
property color background: colors.background1
}
2019-04-28 14:44:55 +10:00
}
2019-04-29 01:01:38 +10:00
readonly property QtObject chat: QtObject {
readonly property QtObject roomHeader: QtObject {
property color background: colors.background1
2019-04-29 01:01:38 +10:00
}
readonly property QtObject roomEventList: QtObject {
property color background: "transparent"
2019-04-29 01:01:38 +10:00
}
readonly property QtObject message: QtObject {
property color background: colors.background1
2019-04-29 01:01:38 +10:00
property color body: colors.foreground
property color date: colors.foregroundDim
}
readonly property QtObject event: QtObject {
property color background: colors.background1
2019-04-29 01:01:38 +10:00
property real saturation: 0.22
property real lightness: 0.24
property color date: colors.foregroundDim
}
readonly property QtObject daybreak: QtObject {
property color background: colors.background1
2019-04-29 01:01:38 +10:00
property color foreground: colors.foreground
property int radius: style.radius
}
readonly property QtObject inviteBanner: QtObject {
property color background: colors.background1
2019-04-29 01:01:38 +10:00
}
readonly property QtObject leftBanner: QtObject {
property color background: colors.background1
}
readonly property QtObject unknownDevices: QtObject {
property color background: colors.background1
}
readonly property QtObject typingMembers: QtObject {
2019-04-29 01:01:38 +10:00
property color background: colors.background0
}
readonly property QtObject sendBox: QtObject {
property color background: colors.background1
2019-04-29 01:01:38 +10:00
}
}
readonly property QtObject box: QtObject {
2019-04-29 05:38:08 +10:00
property color background: colors.background0
2019-04-29 01:01:38 +10:00
property int radius: style.radius
}
readonly property QtObject avatar: QtObject {
property int radius: style.radius
property color letter: "white"
readonly property QtObject background: QtObject {
property real saturation: 0.22
property real lightness: 0.5
property real alpha: 1
property color unknown: Qt.hsla(0, 0, 0.22, 1)
}
2019-04-28 14:44:55 +10:00
}
2019-04-29 01:01:38 +10:00
readonly property QtObject displayName: QtObject {
property real saturation: 0.32
property real lightness: 0.3
2019-04-27 06:02:20 +10:00
}
}