ColorScheme

@Serializable
data class ColorScheme(val foreground: String? = null, val background: String? = null, val activated: String? = null, val inactivated: String? = null, val type: String? = null)

Colors to differentiate this assessment in a UI.

Parameters

foreground

A color value (in hex color triplet or

background

A color value (in hex color triplet or

activated

A color value (in hex color triplet or

inactivated

A color value (in hex color triplet or

type

ColorScheme

Constructors

Link copied to clipboard
constructor(foreground: String? = null, background: String? = null, activated: String? = null, inactivated: String? = null, type: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "activated")
val activated: String? = null
Link copied to clipboard
@SerialName(value = "background")
val background: String? = null
Link copied to clipboard
@SerialName(value = "foreground")
val foreground: String? = null
Link copied to clipboard
@SerialName(value = "inactivated")
val inactivated: String? = null
Link copied to clipboard
@SerialName(value = "type")
val type: String? = null