value

fun value(): String

Gives the unicode value of respective enum constant(Color)

Example:

import best.skn.utils.color.Color;

fun main() {
println("${Color.BLUE.value()}This text is blue!");
}

Return

a String containing the unicode value of the Color

Since

v1.0.0