summaryrefslogtreecommitdiffstats
path: root/style/src/theme
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-06-07 01:11:35 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-06-07 01:11:35 +0200
commitce53d3933c860cd958636cce415ac97c04aee746 (patch)
treef52e2719af65c21ed0d1acc6764ac44e1bba9d65 /style/src/theme
parent835877fc636d71c1faaa4826cbfde8e09b3c82ba (diff)
downloadiced-ce53d3933c860cd958636cce415ac97c04aee746.tar.gz
iced-ce53d3933c860cd958636cce415ac97c04aee746.tar.bz2
iced-ce53d3933c860cd958636cce415ac97c04aee746.zip
Implement theme styling for `TextInput`
Diffstat (limited to 'style/src/theme')
-rw-r--r--style/src/theme/palette.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/style/src/theme/palette.rs b/style/src/theme/palette.rs
index 3d1ca097..fb23bb42 100644
--- a/style/src/theme/palette.rs
+++ b/style/src/theme/palette.rs
@@ -120,7 +120,7 @@ pub struct Background {
impl Background {
pub fn new(base: Color, text: Color) -> Self {
let weak = mix(base, text, 0.15);
- let strong = mix(base, text, 0.25);
+ let strong = mix(base, text, 0.40);
Self {
base: Pair::new(base, text),