16 lines
372 B
PHP
16 lines
372 B
PHP
<?php
|
|
|
|
$theme = include __DIR__.'/themes/green.php';
|
|
|
|
$theme += [
|
|
'navbar' => [ // Additionnal views to append items to the navbar
|
|
'left' => [],
|
|
'right' => [],
|
|
],
|
|
'favicon' => null, // Favicon url
|
|
'fullscreen' => true, // Fullscreen switch
|
|
'darkmode' => true, // Dark mode switch
|
|
];
|
|
|
|
return $theme;
|