diff --git a/img/app-dark.svg b/img/app-dark.svg
new file mode 100644
index 0000000..2589e24
--- /dev/null
+++ b/img/app-dark.svg
@@ -0,0 +1 @@
+
diff --git a/img/app.svg b/img/app.svg
index 2589e24..c0062b9 100644
--- a/img/app.svg
+++ b/img/app.svg
@@ -1 +1 @@
-
+
diff --git a/lib/Settings/RegistrationSettingsSection.php b/lib/Settings/RegistrationSettingsSection.php
index df11e3d..f3ddc9d 100644
--- a/lib/Settings/RegistrationSettingsSection.php
+++ b/lib/Settings/RegistrationSettingsSection.php
@@ -38,7 +38,7 @@ class RegistrationSettingsSection implements IIconSection {
$this->l10n = $l10n;
$this->urlGenerator = $urlGenerator;
}
-
+
/**
* Section ID to be set in Settings
* @return string
@@ -46,7 +46,7 @@ class RegistrationSettingsSection implements IIconSection {
public function getID(): string {
return 'registration';
}
-
+
/**
* Section Name to be displayed
* @return string
@@ -54,7 +54,7 @@ class RegistrationSettingsSection implements IIconSection {
public function getName(): string {
return $this->l10n->t('Registration');
}
-
+
/**
* Return Priority of section 0-100
* @return int
@@ -62,12 +62,12 @@ class RegistrationSettingsSection implements IIconSection {
public function getPriority(): int {
return 80;
}
-
+
/**
* Pass the relative path to the icon
* @return string
*/
public function getIcon(): string {
- return $this->urlGenerator->imagePath('registration', 'app.svg');
+ return $this->urlGenerator->imagePath('registration', 'app-dark.svg');
}
}