diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-02-16 15:25:04 +0100 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-05-21 20:36:26 +0200 |
commit | 8028784976f05ca42f2ebc844c2f637085126009 (patch) | |
tree | c38d17d621b991f31075bd32c34aa4dcd6692b6d /themes | |
parent | bd73bccb40069621fb069022329f6083f7fbcfd8 (diff) | |
download | nextcloud-server-8028784976f05ca42f2ebc844c2f637085126009.tar.gz nextcloud-server-8028784976f05ca42f2ebc844c2f637085126009.zip |
fix: cleanup theming app code
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'themes')
-rw-r--r-- | themes/example/defaults.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/themes/example/defaults.php b/themes/example/defaults.php index e0b14cb0cb8..37bce6c3ee6 100644 --- a/themes/example/defaults.php +++ b/themes/example/defaults.php @@ -111,6 +111,14 @@ class OC_Theme { } /** + * Returns background color to be used + * @return string + */ + public function getColorBackground(): string { + return '#3d85c6'; + } + + /** * Returns variables to overload defaults from core/css/variables.scss * @return array */ |