From 873311558f1b96f7a40ee73ddb270c396607b9bb Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sat, 22 Feb 2025 02:25:01 +0100 Subject: Darken background of `Dark` theme --- core/src/theme/palette.rs | 2 +- examples/todos/snapshots/creates_a_new_task.sha256 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/theme/palette.rs b/core/src/theme/palette.rs index 0ef610bb..ed49063c 100644 --- a/core/src/theme/palette.rs +++ b/core/src/theme/palette.rs @@ -37,7 +37,7 @@ impl Palette { /// The built-in dark variant of a [`Palette`]. pub const DARK: Self = Self { - background: color!(0x313338), + background: color!(0x2B2D31), text: Color::from_rgb(0.90, 0.90, 0.90), primary: color!(0x5865F2), success: color!(0x12664f), diff --git a/examples/todos/snapshots/creates_a_new_task.sha256 b/examples/todos/snapshots/creates_a_new_task.sha256 index a92f8726..cba60539 100644 --- a/examples/todos/snapshots/creates_a_new_task.sha256 +++ b/examples/todos/snapshots/creates_a_new_task.sha256 @@ -1 +1 @@ -ae2cef8da43ffa33fc298204d44968544db05387a07d8030ea88683f8adfe37c \ No newline at end of file +0ef7325a79ce31c83759529ed478c8b4848c40c2867193624ef9673b9e21ff53 \ No newline at end of file -- cgit