. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\I18N; /** * The Minimal theme. */ class MinimalTheme extends AbstractModule implements ModuleThemeInterface { use ModuleThemeTrait; /** * How should this module be identified in the control panel, etc.? * * @return string */ public function title(): string { /* I18N: Name of a theme. */ return I18N::translate('minimal'); } /** * Miscellaneous dimensions, fonts, styles, etc. * * @param string $parameter_name * * @return string|int|float */ public function parameter($parameter_name) { $parameters = [ 'chart-background-f' => 'dddddd', 'chart-background-m' => 'cccccc', 'chart-background-u' => 'eeeeee', 'chart-box-x' => 260, 'chart-box-y' => 85, 'chart-font-color' => '000000', 'chart-spacing-x' => 5, 'chart-spacing-y' => 10, 'compact-chart-box-x' => 240, 'compact-chart-box-y' => 50, 'distribution-chart-high-values' => '555555', 'distribution-chart-low-values' => 'cccccc', 'distribution-chart-no-values' => 'ffffff', ]; return $parameters[$parameter_name]; } /** * A list of CSS files to include for this page. * * @return array */ public function stylesheets(): array { return [ asset('css/minimal.min.css'), ]; } }