aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-02-20 19:31:11 +0100
committermetamuffin <metamuffin@disroot.org>2025-02-20 19:31:11 +0100
commit536318cd729785a21f24e988a69ba2ce5ab0f070 (patch)
tree2cd67985628500e5e6eb304c9c465c302a1d36de /common
parent0911a3a07973e585f6cf962c4c1af3d0530ca1bf (diff)
downloadjellything-536318cd729785a21f24e988a69ba2ce5ab0f070.tar
jellything-536318cd729785a21f24e988a69ba2ce5ab0f070.tar.bz2
jellything-536318cd729785a21f24e988a69ba2ce5ab0f070.tar.zst
Black theme
Diffstat (limited to 'common')
-rw-r--r--common/src/user.rs2
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 {