WeightedValue

class WeightedValue(    val normal: Property,     val light: Property = normal,     val lighter: Property = light,     val strong: Property = normal,     val stronger: Property = strong,     val none: Property = lighter,     val full: Property = strong)

Defines a value that has different expressions for different weights.

Constructors

Link copied to clipboard
fun WeightedValue(    normal: Property,     light: Property = normal,     lighter: Property = light,     strong: Property = normal,     stronger: Property = strong,     none: Property = lighter,     full: Property = strong)

Properties

Link copied to clipboard
val full: Property
Link copied to clipboard
val inherit: Property
Link copied to clipboard
val initial: Property
Link copied to clipboard
val light: Property
Link copied to clipboard
val lighter: Property
Link copied to clipboard
val none: Property
Link copied to clipboard
val normal: Property
Link copied to clipboard
val strong: Property
Link copied to clipboard
val stronger: Property