Have an account? Sign in
Login  Register  Facebook
This Page is Under Construction! - If You Want To Help Please Send your CV - Advanced Web Core (BETA)
[Edit] Validate Hexadecimal Colors

validation for people who allows their user to change color in their system

function fnValidateColor($color){
	return preg_match('/^#(?:(?:[a-f0-9]{3}){1,2})$/i', $color);
}