Color.php
1 day ago
InputType.php
1 day ago
Positions.php
1 day ago
Size.php
1 day ago
Variant.php
1 day ago
Color.php
48 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Color Constants |
| 4 | * |
| 5 | * @package Tutor\Components |
| 6 | * @author Themeum |
| 7 | * @link https://themeum.com |
| 8 | * @since 4.0.0 |
| 9 | */ |
| 10 | |
| 11 | namespace Tutor\Components\Constants; |
| 12 | |
| 13 | defined( 'ABSPATH' ) || exit; |
| 14 | |
| 15 | /** |
| 16 | * Class for containing color constants |
| 17 | * |
| 18 | * @since 4.0.0 |
| 19 | */ |
| 20 | abstract class Color { |
| 21 | |
| 22 | /** |
| 23 | * Icon Colors |
| 24 | * |
| 25 | * @since 4.0.0 |
| 26 | * |
| 27 | * @var string |
| 28 | */ |
| 29 | public const IDLE = 'idle'; |
| 30 | public const IDLE_INVERSE = 'idle-inverse'; |
| 31 | public const HOVER = 'hover'; |
| 32 | public const SECONDARY = 'secondary'; |
| 33 | public const SUBDUED = 'subdued'; |
| 34 | public const BRAND = 'brand'; |
| 35 | public const BRAND_HOVER = 'brand-hover'; |
| 36 | public const BRAND_SECONDARY = 'brand-secondary'; |
| 37 | public const EXCEPTION1 = 'exception1'; |
| 38 | public const EXCEPTION2 = 'exception2'; |
| 39 | public const SUCCESS_PRIMARY = 'success-primary'; |
| 40 | public const EXCEPTION4 = 'exception4'; |
| 41 | public const EXCEPTION5 = 'exception5'; |
| 42 | public const CAUTION = 'caution'; |
| 43 | public const CRITICAL = 'critical'; |
| 44 | public const CRITICAL_HOVER = 'critical-hover'; |
| 45 | public const WARNING = 'warning'; |
| 46 | public const DISABLED = 'disabled'; |
| 47 | } |
| 48 |