diff options
Diffstat (limited to 'imports/Bootstrap')
| -rw-r--r-- | imports/Bootstrap/Bootstrap.qml | 5 | 
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"  |