summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-01-27 01:09:16 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-01-27 01:09:16 +0100
commitce07acf6fedd705d6380739fbc5da40f95739e04 (patch)
tree183322ddbbe61c0c2dba4cdc4d69e9da0504fae4 /examples
parentd9a454ac4d60a259931f13e844680b2fcd18853b (diff)
downloadiced-ce07acf6fedd705d6380739fbc5da40f95739e04.tar.gz
iced-ce07acf6fedd705d6380739fbc5da40f95739e04.tar.bz2
iced-ce07acf6fedd705d6380739fbc5da40f95739e04.zip
Make all `Color` constructors `const` :tada:
Diffstat (limited to 'examples')
-rw-r--r--examples/gradient/src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/gradient/src/main.rs b/examples/gradient/src/main.rs
index 910ea9fc..428ef6fb 100644
--- a/examples/gradient/src/main.rs
+++ b/examples/gradient/src/main.rs
@@ -3,7 +3,7 @@ use iced::theme;
use iced::widget::{
checkbox, column, container, horizontal_space, row, slider, text,
};
-use iced::{Center, Color, Element, Fill, Radians, Theme};
+use iced::{color, Center, Color, Element, Fill, Radians, Theme};
pub fn main() -> iced::Result {
tracing_subscriber::fmt::init();
@@ -34,7 +34,7 @@ impl Gradient {
fn new() -> Self {
Self {
start: Color::WHITE,
- end: Color::new(0.0, 0.0, 1.0, 1.0),
+ end: color!(0x0000ff),
angle: Radians(0.0),
transparent: false,
}