respect-validation/docs/rules/HexRgbColor.md
Henrique Moody 955405b997
Fix type in HexRgbColor documentation
Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
2024-03-11 23:14:36 +01:00

30 lines
531 B
Markdown

# HexRgbColor
- `HexRgbColor()`
Validates whether the input is a hex RGB color or not.
```php
v::hexRgbColor()->validate('#FFFAAA'); // true
v::hexRgbColor()->validate('#ff6600'); // true
v::hexRgbColor()->validate('123123'); // true
v::hexRgbColor()->validate('FCD'); // true
```
## Categorization
- Strings
## Changelog
Version | Description
--------|-------------
2.1.0 | Allow hex RGB colors to be case-insensitive
2.0.0 | Allow hex RGB colors with 3 integers
0.7.0 | Created
***
See also:
- [Xdigit](Xdigit.md)