Constant freya_elements::label::color
source · pub const color: AttributeDescription;
Expand description
The color
attribute lets you specify the color of the text.
You can learn about the syntax of this attribute in Color Syntax
.
§Example
fn app() -> Element {
rsx!(
label {
color: "green",
"Hello, World!"
}
)
}
Another example showing inheritance:
fn app() -> Element {
rsx!(
rect {
color: "blue",
label {
"Hello, World!"
}
}
)
}