diff --git a/application/images/GitHub-Mark-120px-plus.png b/application/images/GitHub-Mark-120px-plus.png new file mode 100644 index 0000000..ea6ff54 Binary files /dev/null and b/application/images/GitHub-Mark-120px-plus.png differ diff --git a/application/images/GitHub-Mark-Light-120px-plus.png b/application/images/GitHub-Mark-Light-120px-plus.png new file mode 100644 index 0000000..192846a Binary files /dev/null and b/application/images/GitHub-Mark-Light-120px-plus.png differ diff --git a/application/qml/pages/AboutPage.qml b/application/qml/pages/AboutPage.qml index eefb437..844ab03 100644 --- a/application/qml/pages/AboutPage.qml +++ b/application/qml/pages/AboutPage.qml @@ -135,9 +135,12 @@ Page { text: qsTr("Contributions and translations are always appreciated!") } - Button { - text: "GitHub" - anchors.horizontalCenter: parent.horizontalCenter + ImageButton { + source: Qt.resolvedUrl( + Theme.colorScheme === Theme.LightOnDark + ? "/usr/share/harbour-batterybuddy/images/GitHub-Mark-Light-120px-plus.png" + : "/usr/share/harbour-batterybuddy/images/GitHub-Mark-120px-plus.png" + ) onClicked: Qt.openUrlExternally("https://github.com/direc85/harbour-batterybuddy") }