Convert
const blue = Color("#0099FF")
Color.toHex(blue) // "0099FF"
Color.toHex(Color("#FFAAFF"), true) // "FAF"const blue = Color("#0099FF")
Color.toHexString(blue) // "#0099FF"
Color.toHexString(Color("#FFAAFF"), true) // "#FAF"Last updated
const blue = Color("#0099FF")
Color.toHex(blue) // "0099FF"
Color.toHex(Color("#FFAAFF"), true) // "FAF"const blue = Color("#0099FF")
Color.toHexString(blue) // "#0099FF"
Color.toHexString(Color("#FFAAFF"), true) // "#FAF"Last updated
const blue = Color("#0099FF")
Color.toHsl(blue) // {h: 204, s: 1, l: 0.5, a: 1}const blue = Color("#0099FF")
Color.toHslString(blue) // "hsl(204, 100%, 50%)"const blue = Color("#0099FF")
Color.toHsv(blue) // {h: 204, s: 1, v: 1, a: 1}"const blue = Color("#0099FF")
Color.toHusl(blue) // {h: 250, s: 100, l: 50, a: 1}const green = Color("#8FBC8F")
Color.toName(green) // "darkseagreen"const blue = Color("#0099FF")
Color.toRgb(blue) // {r: 40, g: 175, b: 250, a: 1}const blue = Color("#0099FF")
Color.toRgbString(blue) // "rgb(0, 153, 255)"const blue = Color("#0099FF")
Color.toString(blue) // "rgb(0, 153, 255)"