Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions LocalSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -3077,6 +3077,9 @@
'wgLakeusShowStickyTOC' => [
'default' => false,
],
'wgLakeusWikiDefaultColorScheme' => [
'default' => 'light',
],

// Language
'wgLanguageCode' => [
Expand Down
20 changes: 17 additions & 3 deletions ManageWikiSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -4163,6 +4163,20 @@
'help' => 'Shows the sticky TOC.',
'requires' => [],
],
'wgLakeusWikiDefaultColorScheme' => [
'name' => 'Lakeus Default Theme',
'from' => 'lakeus',
'type' => 'list',
'options' => [
'Use System Setting' => 'os',
'Light Mode' => 'light',
'Dark Mode' => 'dark',
],
'overridedefault' => 'light',
'section' => 'styling',
'help' => 'Default color scheme when choosing "Use wiki default" in Preferences.',
'requires' => [],
],
'wgMetrolookDownArrow' => [
'name' => 'Metrolook Down Arrow',
'from' => 'metrolook',
Expand Down Expand Up @@ -4232,9 +4246,9 @@
'from' => 'citizen',
'type' => 'list',
'options' => [
'auto' => 'auto',
'dark' => 'dark',
'light' => 'light',
'Use System Setting' => 'auto',
'Light Mode' => 'light',
'Dark Mode' => 'dark',
],
'overridedefault' => 'auto',
'section' => 'styling',
Expand Down