mirror of
https://github.com/Findus23/matomo-darktheme.git
synced 2024-08-27 19:52:16 +02:00
30 lines
698 B
PHP
30 lines
698 B
PHP
<?php
|
|
/**
|
|
* Piwik - free/libre analytics platform
|
|
*
|
|
* @link http://piwik.org
|
|
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
|
*
|
|
*/
|
|
|
|
namespace Piwik\Plugins\HighContrastDark;
|
|
|
|
use Piwik\Plugin;
|
|
|
|
class HighContrastDark extends Plugin
|
|
{
|
|
public function getListHooksRegistered()
|
|
{
|
|
return [
|
|
'Theme.configureThemeVariables' => 'configureThemeVariables',
|
|
];
|
|
}
|
|
|
|
public function configureThemeVariables(Plugin\ThemeStyles $vars)
|
|
{
|
|
$vars->fontFamilyBase = 'Arial, Verdana, sans-serif';
|
|
$vars->colorBrand = '#5793d4';
|
|
$vars->colorHeaderBackground = '#0091ea';
|
|
$vars->colorHeaderText = '#0d0d0d';
|
|
}
|
|
}
|