2017-11-16 21:05:14 +00:00
|
|
|
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"; }
|
2017-11-19 20:14:05 +00:00
|
|
|
|
|
|
|
property string inputBoxBackground: "black"
|
|
|
|
property string inputBoxBackgroundError: "#FFDDDD"
|
|
|
|
property string inputBoxColor: "white"
|
2017-11-16 21:05:14 +00:00
|
|
|
}
|