static java.awt.Color awtColor(S hex) { byte[] b = bytesFromHex(hex); ret new Color(ubyteToInt(b[0]), ubyteToInt(b[1]), ubyteToInt(b[2])); }