Files
2025-02-24 22:33:42 +01:00

16 lines
329 B
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'];
}
}