Shipped
2 days ago
Storage
2 days ago
Type
2 days ago
ColorCollection.php
2 days ago
ColorReader.php
2 days ago
ColorRepository.php
2 days ago
Colors.php
2 days ago
StyleInjector.php
2 days ago
Colors.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace AC\Admin\Colors; |
| 6 | |
| 7 | interface Colors |
| 8 | { |
| 9 | public const SUCCESS = 'success'; |
| 10 | public const SUCCESS_ALT = 'success-alt'; |
| 11 | public const WARNING = 'warning'; |
| 12 | public const WARNING_ALT = 'warning-alt'; |
| 13 | public const ERROR = 'error'; |
| 14 | public const ERROR_ALT = 'error-alt'; |
| 15 | public const INFO = 'info'; |
| 16 | public const INFO_ALT = 'info-alt'; |
| 17 | |
| 18 | } |
| 19 |