Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/laravel-validation-rules/colour

Validate colours.
https://github.com/laravel-validation-rules/colour

color colour css hex laravel validation

Last synced: about 2 months ago
JSON representation

Validate colours.

Awesome Lists containing this project

README

        

# Colour

Validates colours, currently supporting hex codes only.














## Installation

```bash
composer require laravel-validation-rules/colour
```

## Usage

```php
use LVR\Colour\Hex;

$request->validate([
'colour' => ['required', new Hex],
]);
```