an Entity in Data Space: 134.155.108.49:8890
A simple function to validate a string and make sure it is a valid hex color code function isColourCode(str) { objRegExp = /^\#[0-9A-Fa-f]{6}$/ return objRegExp.test(str); }