diff options
-rw-r--r-- | widget/src/container.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/widget/src/container.rs b/widget/src/container.rs index b991e0f1..9224f2ce 100644 --- a/widget/src/container.rs +++ b/widget/src/container.rs @@ -659,8 +659,9 @@ pub fn bordered_box(theme: &Theme) -> Style { /// A [`Container`] with a dark background and white text. pub fn dark(_theme: &Theme) -> Style { Style { - background: Some(color!(0x333333).into()), + background: Some(color!(0x111111).into()), text_color: Some(Color::WHITE), + border: border::rounded(2), ..Style::default() } } |