mirror of
https://github.com/flarum/core.git
synced 2025-07-09 19:06:23 +02:00
Update LESS variable names
This commit is contained in:
@ -182,10 +182,10 @@ abstract class ClientAction extends HtmlAction
|
|||||||
protected function getLessVariables()
|
protected function getLessVariables()
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'fl-primary-color' => $this->settings->get('theme_primary_color', '#000'),
|
'config-primary-color' => $this->settings->get('theme_primary_color', '#000'),
|
||||||
'fl-secondary-color' => $this->settings->get('theme_secondary_color', '#000'),
|
'config-secondary-color' => $this->settings->get('theme_secondary_color', '#000'),
|
||||||
'fl-dark-mode' => $this->settings->get('theme_dark_mode') ? 'true' : 'false',
|
'config-dark-mode' => $this->settings->get('theme_dark_mode') ? 'true' : 'false',
|
||||||
'fl-colored-header' => $this->settings->get('theme_colored_header') ? 'true' : 'false'
|
'config-colored-header' => $this->settings->get('theme_colored_header') ? 'true' : 'false'
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user