We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7b124c commit ee849cdCopy full SHA for ee849cd
src/ui/src/main.rs
@@ -5,7 +5,7 @@ pub mod channel;
5
use std::sync::Arc;
6
7
use app_state::AppState;
8
-use components::theme::{Theme, ThemeColor, ThemeMode};
+use components::theme::{hsl, Theme, ThemeColor, ThemeMode};
9
use gpui::*;
10
use http_client::anyhow;
11
@@ -49,8 +49,9 @@ async fn main() {
49
50
let mut theme = Theme::from(ThemeColor::dark());
51
theme.mode = ThemeMode::Dark;
52
- theme.accent = hsla(335.0 / 360.0, 97.0 / 100.0, 61.0 / 100.0, 1.0);
53
- theme.title_bar = hsla(335.0 / 360.0, 97.0 / 100.0, 61.0 / 100.0, 1.0);
+ theme.accent = hsl(335.0, 97.0, 61.0);
+ theme.title_bar = hsl(335.0, 97.0, 61.0);
54
+ theme.background = hsl(225.0, 12.0, 10.0);
55
56
cx.set_global(theme);
57
cx.refresh();
0 commit comments