%PDF- %PDF-
| Direktori : /www/klubovnaostrava/test2/wp-content/plugins/filebird/includes/Model/ |
| Current File : /www/klubovnaostrava/test2/wp-content/plugins/filebird/includes/Model/ThemeModel.php |
<?php
namespace FileBird\Model;
defined( 'ABSPATH' ) || exit;
class ThemeModel {
const COLORS = array(
'default' => '#8f8f8f',
'windows' => '#F3C73E',
'dropbox' => '#88C1FC',
);
public static function getThemeColor( string $themeName ): string {
return self::COLORS[ $themeName ] ?? self::COLORS['default'];
}
}