aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2018-07-17 16:35:04 -0500
committerluigi1111 <luigi1111w@gmail.com>2018-07-17 16:35:04 -0500
commit07a4dd26a505f072c27d83656ff26792f16aa70f (patch)
treecb8bdf420f1bc6380bcb4934df0d4416718be840 /components
parentceda53d8d2df9aedeff6a323dd2a88288231ba0c (diff)
parentc1dd25a77ee012c541af8ede785a3cbea6faa2b2 (diff)
downloadmonzero-gui-07a4dd26a505f072c27d83656ff26792f16aa70f.tar.gz
monzero-gui-07a4dd26a505f072c27d83656ff26792f16aa70f.tar.xz
monzero-gui-07a4dd26a505f072c27d83656ff26792f16aa70f.zip
Merge pull request #1471
c1dd25a remove non-free SF fonts, add Roboto fonts + license (pazos)
Diffstat (limited to 'components')
-rw-r--r--components/Style.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/components/Style.qml b/components/Style.qml
index 880a9074..21a27f7c 100644
--- a/components/Style.qml
+++ b/components/Style.qml
@@ -3,10 +3,10 @@ pragma Singleton
import QtQuick 2.5
QtObject {
- property QtObject fontMedium: FontLoader { id: _fontMedium; source: "qrc:/fonts/SFUIDisplay-Medium.otf"; }
- property QtObject fontBold: FontLoader { id: _fontBold; source: "qrc:/fonts/SFUIDisplay-Bold.otf"; }
- property QtObject fontLight: FontLoader { id: _fontLight; source: "qrc:/fonts/SFUIDisplay-Light.otf"; }
- property QtObject fontRegular: FontLoader { id: _fontRegular; source: "qrc:/fonts/SFUIDisplay-Regular.otf"; }
+ property QtObject fontMedium: FontLoader { id: _fontMedium; source: "qrc:/fonts/Roboto-Medium.ttf"; }
+ property QtObject fontBold: FontLoader { id: _fontBold; source: "qrc:/fonts/Roboto-Bold.ttf"; }
+ property QtObject fontLight: FontLoader { id: _fontLight; source: "qrc:/fonts/Roboto-Light.ttf"; }
+ property QtObject fontRegular: FontLoader { id: _fontRegular; source: "qrc:/fonts/Roboto-Regular.ttf"; }
property string grey: "#404040"