Add a toggle between dark and light theme

This commit is contained in:
Greg Burri 2025-03-31 15:31:06 +02:00
parent d22617538e
commit 559ed139aa
34 changed files with 640 additions and 469 deletions

View file

@ -9,7 +9,7 @@ common = { path = "../common" }
axum = { version = "0.8", features = ["macros"] }
axum-extra = { version = "0.10", features = ["cookie", "query"] }
tokio = { version = "1", features = ["full"] }
tokio = { version = "1", features = ["signal", "rt-multi-thread"] }
tower = { version = "0.5", features = ["util", "limit", "buffer"] }
tower-http = { version = "0.6", features = ["fs", "trace"] }
@ -44,5 +44,4 @@ lettre = { version = "0.11", default-features = false, features = [
"tokio1-rustls-tls",
] }
derive_more = { version = "2", features = ["full"] }
thiserror = "2"