# filebird/6.3/includes/Model/ThemeModel.php

FileBird – WordPress Media Library Folders &amp; File Manager, version 6.3. 16 lines.

- Page: https://pluginprobe.com/plugins/filebird/6.3/code/includes/Model/ThemeModel.php
- Raw: https://pluginprobe.com/plugins/filebird/6.3/raw/includes/Model/ThemeModel.php
- Modified: 2024-06-25T07:35:42+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/filebird/6.3/code/includes/Model/ThemeModel.php#L10-L20`.

```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'];
	}
}
```
