Flarum\Http\WebApp\AbstractWebApp::getLessVariables PHP Метод

getLessVariables() приватный Метод

Get the values of any LESS variables to compile into the CSS, based on the forum's configuration.
private getLessVariables ( ) : array
Результат array
    private function getLessVariables()
    {
        return ['config-primary-color' => $this->settings->get('theme_primary_color') ?: '#000', 'config-secondary-color' => $this->settings->get('theme_secondary_color') ?: '#000', 'config-dark-mode' => $this->settings->get('theme_dark_mode') ? 'true' : 'false', 'config-colored-header' => $this->settings->get('theme_colored_header') ? 'true' : 'false'];
    }