Elgg  Version 6.2
variables.css.php
Go to the documentation of this file.
1 <?php
6 echo ':root {';
7 
8 $css_vars = _elgg_services()->cssCompiler->getCssVars();
9 ksort($css_vars);
10 foreach ($css_vars as $variable => $value) {
11  echo "--elgg-{$variable}: {$value};";
12 }
13 
14 echo '}';
$css_vars
CSS variables.
$value
Definition: generic.php:51
_elgg_services()
Get the global service provider.
Definition: elgglib.php:353