initial commit

This commit is contained in:
erinn 2020-05-19 13:08:57 -07:00
parent 79eff3c0f6
commit 1e6c149471
17 changed files with 669 additions and 0 deletions

BIN
fonts/AdobeBlank.ttf Normal file

Binary file not shown.

27
fonts/Fonts.qml Normal file
View File

@ -0,0 +1,27 @@
pragma Singleton
import QtQuick 2.5
QtObject {
property FontLoader applicationFontBold: FontLoader {
id: opensansBold
source: "qrc:/qml/fonts/opensans/OpenSans-Bold.ttf"
}
property FontLoader applicationFontExtrBold: FontLoader {
id: opensansExtraBold
source: "qrc:/qml/fonts/opensans/OpenSans-ExtraBold.ttf"
}
property FontLoader applicationFontRegular: FontLoader {
id: opensansRegular
source: "qrc:/qml/fonts/opensans/OpenSans-Regular.ttf"
}
property FontLoader applicationFontLight: FontLoader {
id: opensansLight
source: "qrc:/qml/fonts/opensans/OpenSans-Light.ttf"
}
}

73
fonts/MutantStandard.js Normal file

File diff suppressed because one or more lines are too long

568
fonts/Twemoji.js Normal file

File diff suppressed because one or more lines are too long

BIN
fonts/Twemoji.jsc Normal file

Binary file not shown.

BIN
fonts/fontawesome.ttf Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

1
fonts/qmldir Normal file
View File

@ -0,0 +1 @@
singleton Fonts Fonts.qml