blob: 86068513a9ab097f600db3d430b3e66211d54503 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
pragma Singleton
import QtQuick 2.15
QtObject {
enum Mode {
Light,
Dark
}
property int mode: Bootstrap.Mode.Light
property font bodyFont: Qt.font({
family: "Roboto",
pointSize: 15.0,
weight: Font.Normal
})
readonly property color bodyColor: mode ? "#a1a1a8" : "#747579"
readonly property color bodyBg: mode ? "#222529" : "#fff"
readonly property color borderColor: mode ? "#12ffffff" : "#eff1f2"
}
|