Skip to content

Commit 90a27ae

Browse files
committed
💥 Remove Default impl from color scheme
1 parent d5419fe commit 90a27ae

File tree

1 file changed

+1
-2
lines changed
  • crates/terminal-colorsaurus/src

1 file changed

+1
-2
lines changed

crates/terminal-colorsaurus/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,11 @@ pub struct ColorPalette {
9898
///
9999
/// The easiest way to retrieve the color scheme
100100
/// is by calling [`color_scheme`].
101-
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
101+
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
102102
#[allow(clippy::exhaustive_enums)]
103103
#[doc(alias = "Theme")]
104104
pub enum ColorScheme {
105105
/// The terminal uses a dark background with light text.
106-
#[default]
107106
Dark,
108107
/// The terminal uses a light background with dark text.
109108
Light,

0 commit comments

Comments
 (0)