summaryrefslogtreecommitdiff
path: root/imports/Bootstrap/Bootstrap.qml
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-04-12 17:30:11 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-04-12 17:30:11 +0800
commit89fcfe5ec1073fd374a8bae3d8457bebd96453c8 (patch)
tree757d449fff6d5f65c5faf7d3ad16ca5f5f0d87e9 /imports/Bootstrap/Bootstrap.qml
parentab4d14d706f98907a1ae3929a94ac418f8a20c25 (diff)
BS body font can be set & used instead
Diffstat (limited to 'imports/Bootstrap/Bootstrap.qml')
-rw-r--r--imports/Bootstrap/Bootstrap.qml5
1 files changed, 5 insertions, 0 deletions
diff --git a/imports/Bootstrap/Bootstrap.qml b/imports/Bootstrap/Bootstrap.qml
index d31cfb0..8606851 100644
--- a/imports/Bootstrap/Bootstrap.qml
+++ b/imports/Bootstrap/Bootstrap.qml
@@ -8,6 +8,11 @@ QtObject {
}
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"