chore: use with_alpha() where applicable
This commit is contained in:
parent
7748e59ae6
commit
ec7a531539
6 changed files with 57 additions and 91 deletions
|
|
@ -16,6 +16,7 @@ use iced::{
|
|||
};
|
||||
use iced_core::{Background, Border, Color, Shadow, Vector};
|
||||
use iced_widget::{pane_grid::Highlight, text_editor, text_input};
|
||||
use palette::WithAlpha;
|
||||
use std::rc::Rc;
|
||||
|
||||
pub mod application {
|
||||
|
|
@ -720,9 +721,8 @@ impl slider::Catalog for Theme {
|
|||
border_radius: cosmic.corner_radii.radius_m.into(),
|
||||
};
|
||||
appearance.handle.border_width = 3.0;
|
||||
let mut border_color = self.cosmic().palette.neutral_10;
|
||||
border_color.alpha = 0.1;
|
||||
appearance.handle.border_color = border_color.into();
|
||||
appearance.handle.border_color =
|
||||
self.cosmic().palette.neutral_10.with_alpha(0.1).into();
|
||||
appearance
|
||||
}
|
||||
Slider::Custom { hovered, .. } => hovered(self),
|
||||
|
|
@ -736,15 +736,12 @@ impl slider::Catalog for Theme {
|
|||
border_radius: cosmic.corner_radii.radius_m.into(),
|
||||
};
|
||||
appearance.handle.border_width = 3.0;
|
||||
let mut border_color = self.cosmic().palette.neutral_10;
|
||||
border_color.alpha = 0.1;
|
||||
appearance.handle.border_color = border_color.into();
|
||||
appearance.handle.border_color =
|
||||
self.cosmic().palette.neutral_10.with_alpha(0.1).into();
|
||||
appearance
|
||||
};
|
||||
let mut border_color = self.cosmic().palette.neutral_10;
|
||||
border_color.alpha = 0.2;
|
||||
style.handle.border_color = border_color.into();
|
||||
|
||||
style.handle.border_color =
|
||||
self.cosmic().palette.neutral_10.with_alpha(0.2).into();
|
||||
style
|
||||
}
|
||||
Slider::Custom { dragging, .. } => dragging(self),
|
||||
|
|
@ -824,8 +821,6 @@ impl radio::Catalog for Theme {
|
|||
|
||||
fn style(&self, class: &Self::Class<'_>, status: radio::Status) -> radio::Style {
|
||||
let theme = self.cosmic();
|
||||
let mut neutral_10 = theme.palette.neutral_10;
|
||||
neutral_10.alpha = 0.1;
|
||||
|
||||
match status {
|
||||
radio::Status::Active { is_selected } => radio::Style {
|
||||
|
|
@ -850,7 +845,7 @@ impl radio::Catalog for Theme {
|
|||
Color::from(theme.accent.base).into()
|
||||
} else {
|
||||
// TODO: this seems to be defined weirdly in FIGMA
|
||||
Color::from(neutral_10).into()
|
||||
Color::from(theme.palette.neutral_10.with_alpha(0.1)).into()
|
||||
},
|
||||
dot_color: theme.accent.on.into(),
|
||||
border_width: 1.0,
|
||||
|
|
@ -877,8 +872,7 @@ impl toggler::Catalog for Theme {
|
|||
fn style(&self, class: &Self::Class<'_>, status: toggler::Status) -> toggler::Style {
|
||||
let cosmic = self.cosmic();
|
||||
const HANDLE_MARGIN: f32 = 2.0;
|
||||
let mut neutral_10 = cosmic.palette.neutral_10;
|
||||
neutral_10.alpha = 0.1;
|
||||
let neutral_10 = cosmic.palette.neutral_10.with_alpha(0.1);
|
||||
|
||||
let mut active = toggler::Style {
|
||||
background: if matches!(status, toggler::Status::Active { is_toggled: true }) {
|
||||
|
|
@ -1098,8 +1092,7 @@ impl scrollable::Catalog for Theme {
|
|||
match status {
|
||||
scrollable::Status::Active => {
|
||||
let cosmic = self.cosmic();
|
||||
let mut neutral_5 = cosmic.palette.neutral_5;
|
||||
neutral_5.alpha = 0.7;
|
||||
let neutral_5 = cosmic.palette.neutral_5.with_alpha(0.7);
|
||||
let mut a = scrollable::Style {
|
||||
container: iced_container::transparent(self),
|
||||
vertical_rail: scrollable::Rail {
|
||||
|
|
@ -1134,8 +1127,7 @@ impl scrollable::Catalog for Theme {
|
|||
};
|
||||
|
||||
if matches!(class, Scrollable::Permanent) {
|
||||
let mut neutral_3 = cosmic.palette.neutral_3;
|
||||
neutral_3.alpha = 0.7;
|
||||
let neutral_3 = cosmic.palette.neutral_3.with_alpha(0.7);
|
||||
a.horizontal_rail.background = Some(Background::Color(neutral_3.into()));
|
||||
a.vertical_rail.background = Some(Background::Color(neutral_3.into()));
|
||||
}
|
||||
|
|
@ -1145,14 +1137,12 @@ impl scrollable::Catalog for Theme {
|
|||
// TODO handle vertical / horizontal
|
||||
scrollable::Status::Hovered { .. } | scrollable::Status::Dragged { .. } => {
|
||||
let cosmic = self.cosmic();
|
||||
let mut neutral_5 = cosmic.palette.neutral_5;
|
||||
neutral_5.alpha = 0.7;
|
||||
let neutral_5 = cosmic.palette.neutral_5.with_alpha(0.7);
|
||||
|
||||
// TODO hover
|
||||
|
||||
// if is_mouse_over_scrollbar {
|
||||
// let mut hover_overlay = cosmic.palette.neutral_0;
|
||||
// hover_overlay.alpha = 0.2;
|
||||
// let hover_overlay = cosmic.palette.neutral_0.with_alpha(0.2);
|
||||
// neutral_5 = over(hover_overlay, neutral_5);
|
||||
// }
|
||||
let mut a: scrollable::Style = scrollable::Style {
|
||||
|
|
@ -1189,8 +1179,7 @@ impl scrollable::Catalog for Theme {
|
|||
};
|
||||
|
||||
if matches!(class, Scrollable::Permanent) {
|
||||
let mut neutral_3 = cosmic.palette.neutral_3;
|
||||
neutral_3.alpha = 0.7;
|
||||
let neutral_3 = cosmic.palette.neutral_3.with_alpha(0.7);
|
||||
a.horizontal_rail.background = Some(Background::Color(neutral_3.into()));
|
||||
a.vertical_rail.background = Some(Background::Color(neutral_3.into()));
|
||||
}
|
||||
|
|
@ -1289,13 +1278,11 @@ impl text_input::Catalog for Theme {
|
|||
|
||||
fn style(&self, class: &Self::Class<'_>, status: text_input::Status) -> text_input::Style {
|
||||
let palette = self.cosmic();
|
||||
let mut bg = palette.palette.neutral_7;
|
||||
bg.alpha = 0.25;
|
||||
let bg = palette.palette.neutral_7.with_alpha(0.25);
|
||||
|
||||
let mut neutral_9 = palette.palette.neutral_9;
|
||||
let neutral_9 = palette.palette.neutral_9;
|
||||
let value = neutral_9.into();
|
||||
neutral_9.alpha = 0.7;
|
||||
let placeholder = neutral_9.into();
|
||||
let placeholder = neutral_9.with_alpha(0.7).into();
|
||||
let selection = palette.accent.base.into();
|
||||
|
||||
let mut appearance = match class {
|
||||
|
|
@ -1327,8 +1314,7 @@ impl text_input::Catalog for Theme {
|
|||
match status {
|
||||
text_input::Status::Active => appearance,
|
||||
text_input::Status::Hovered => {
|
||||
let mut bg = palette.palette.neutral_7;
|
||||
bg.alpha = 0.25;
|
||||
let bg = palette.palette.neutral_7.with_alpha(0.25);
|
||||
|
||||
match class {
|
||||
TextInput::Default => text_input::Style {
|
||||
|
|
@ -1357,8 +1343,7 @@ impl text_input::Catalog for Theme {
|
|||
}
|
||||
}
|
||||
text_input::Status::Focused => {
|
||||
let mut bg = palette.palette.neutral_7;
|
||||
bg.alpha = 0.25;
|
||||
let bg = palette.palette.neutral_7.with_alpha(0.25);
|
||||
|
||||
match class {
|
||||
TextInput::Default => text_input::Style {
|
||||
|
|
@ -1433,9 +1418,7 @@ impl iced_widget::text_editor::Catalog for Theme {
|
|||
|
||||
let selection = cosmic.accent.base.into();
|
||||
let value = cosmic.palette.neutral_9.into();
|
||||
let mut placeholder = cosmic.palette.neutral_9;
|
||||
placeholder.alpha = 0.7;
|
||||
let placeholder = placeholder.into();
|
||||
let placeholder = cosmic.palette.neutral_9.with_alpha(0.7).into();
|
||||
let icon = cosmic.background.on.into();
|
||||
|
||||
match status {
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@ use crate::widget::segmented_button::{Appearance, ItemAppearance, StyleSheet};
|
|||
use crate::{theme::Theme, widget::segmented_button::ItemStatusAppearance};
|
||||
use cosmic_theme::{Component, Container};
|
||||
use iced_core::{Background, border::Radius};
|
||||
use palette::WithAlpha;
|
||||
|
||||
#[derive(Default)]
|
||||
pub enum SegmentedButton {
|
||||
|
|
@ -166,19 +167,19 @@ mod horizontal {
|
|||
use crate::widget::segmented_button::{ItemAppearance, ItemStatusAppearance};
|
||||
use cosmic_theme::Component;
|
||||
use iced_core::{Background, border::Radius};
|
||||
use palette::WithAlpha;
|
||||
|
||||
pub fn selection_active(
|
||||
cosmic: &cosmic_theme::Theme,
|
||||
component: &Component,
|
||||
) -> ItemStatusAppearance {
|
||||
let mut color = cosmic.palette.neutral_5;
|
||||
color.alpha = 0.2;
|
||||
|
||||
let rad_m = cosmic.corner_radii.radius_m;
|
||||
let rad_0 = cosmic.corner_radii.radius_0;
|
||||
|
||||
ItemStatusAppearance {
|
||||
background: Some(Background::Color(color.into())),
|
||||
background: Some(Background::Color(
|
||||
cosmic.palette.neutral_5.with_alpha(0.2).into(),
|
||||
)),
|
||||
first: ItemAppearance {
|
||||
border_radius: Radius::from([rad_m[0], rad_0[1], rad_0[2], rad_m[3]]),
|
||||
..Default::default()
|
||||
|
|
@ -196,12 +197,12 @@ mod horizontal {
|
|||
}
|
||||
|
||||
pub fn tab_bar_active(cosmic: &cosmic_theme::Theme) -> ItemStatusAppearance {
|
||||
let mut neutral_5 = cosmic.palette.neutral_5;
|
||||
neutral_5.alpha = 0.2;
|
||||
let rad_s = cosmic.corner_radii.radius_s;
|
||||
let rad_0 = cosmic.corner_radii.radius_0;
|
||||
ItemStatusAppearance {
|
||||
background: Some(Background::Color(neutral_5.into())),
|
||||
background: Some(Background::Color(
|
||||
cosmic.palette.neutral_5.with_alpha(0.2).into(),
|
||||
)),
|
||||
first: ItemAppearance {
|
||||
border_radius: Radius::from([rad_s[0], rad_s[1], rad_0[2], rad_0[3]]),
|
||||
border_bottom: Some((4.0, cosmic.accent.base.into())),
|
||||
|
|
@ -240,10 +241,10 @@ pub fn hover(
|
|||
component: &Component,
|
||||
default: &ItemStatusAppearance,
|
||||
) -> ItemStatusAppearance {
|
||||
let mut color = cosmic.palette.neutral_8;
|
||||
color.alpha = 0.2;
|
||||
ItemStatusAppearance {
|
||||
background: Some(Background::Color(color.into())),
|
||||
background: Some(Background::Color(
|
||||
cosmic.palette.neutral_8.with_alpha(0.2).into(),
|
||||
)),
|
||||
text_color: cosmic.accent.base.into(),
|
||||
..*default
|
||||
}
|
||||
|
|
@ -253,19 +254,19 @@ mod vertical {
|
|||
use crate::widget::segmented_button::{ItemAppearance, ItemStatusAppearance};
|
||||
use cosmic_theme::Component;
|
||||
use iced_core::{Background, border::Radius};
|
||||
use palette::WithAlpha;
|
||||
|
||||
pub fn selection_active(
|
||||
cosmic: &cosmic_theme::Theme,
|
||||
component: &Component,
|
||||
) -> ItemStatusAppearance {
|
||||
let mut color = component.selected_state_color();
|
||||
color.alpha = 0.3;
|
||||
|
||||
let rad_0 = cosmic.corner_radii.radius_0;
|
||||
let rad_m = cosmic.corner_radii.radius_m;
|
||||
|
||||
ItemStatusAppearance {
|
||||
background: Some(Background::Color(color.into())),
|
||||
background: Some(Background::Color(
|
||||
component.selected_state_color().with_alpha(0.3).into(),
|
||||
)),
|
||||
first: ItemAppearance {
|
||||
border_radius: Radius::from([rad_m[0], rad_m[1], rad_0[2], rad_0[3]]),
|
||||
..Default::default()
|
||||
|
|
@ -283,10 +284,10 @@ mod vertical {
|
|||
}
|
||||
|
||||
pub fn tab_bar_active(cosmic: &cosmic_theme::Theme) -> ItemStatusAppearance {
|
||||
let mut neutral_5 = cosmic.palette.neutral_5;
|
||||
neutral_5.alpha = 0.2;
|
||||
ItemStatusAppearance {
|
||||
background: Some(Background::Color(neutral_5.into())),
|
||||
background: Some(Background::Color(
|
||||
cosmic.palette.neutral_5.with_alpha(0.2).into(),
|
||||
)),
|
||||
first: ItemAppearance {
|
||||
border_radius: cosmic.corner_radii.radius_m.into(),
|
||||
..Default::default()
|
||||
|
|
|
|||
|
|
@ -219,8 +219,6 @@ where
|
|||
#[allow(clippy::trivially_copy_pass_by_ref)]
|
||||
fn container_style(theme: &crate::Theme) -> iced_widget::container::Style {
|
||||
let cosmic_theme = &theme.cosmic();
|
||||
let mut neutral_10 = cosmic_theme.palette.neutral_10;
|
||||
neutral_10.alpha = 0.1;
|
||||
let accent = &cosmic_theme.accent;
|
||||
let corners = &cosmic_theme.corner_radii;
|
||||
let border = if theme.theme_type.is_high_contrast() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue