diff options
author | metamuffin <metamuffin@disroot.org> | 2025-02-20 19:31:11 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-02-20 19:31:11 +0100 |
commit | 536318cd729785a21f24e988a69ba2ce5ab0f070 (patch) | |
tree | 2cd67985628500e5e6eb304c9c465c302a1d36de /common | |
parent | 0911a3a07973e585f6cf962c4c1af3d0530ca1bf (diff) | |
download | jellything-536318cd729785a21f24e988a69ba2ce5ab0f070.tar jellything-536318cd729785a21f24e988a69ba2ce5ab0f070.tar.bz2 jellything-536318cd729785a21f24e988a69ba2ce5ab0f070.tar.zst |
Black theme
Diffstat (limited to 'common')
-rw-r--r-- | common/src/user.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/src/user.rs b/common/src/user.rs index 89a8fca..ef78eca 100644 --- a/common/src/user.rs +++ b/common/src/user.rs @@ -58,6 +58,7 @@ pub enum Theme { Dark, Light, Purple, + Black, } #[derive(Debug, Clone, Copy, Serialize, Default, Deserialize, PartialEq, Encode, Decode)] @@ -75,6 +76,7 @@ impl Theme { (Theme::Dark, "Dark"), (Theme::Light, "Light"), (Theme::Purple, "Purple"), + (Theme::Black, "Black"), ]; } impl PlayerKind { |