Add temp_color to theme (Catppuccin peach)
- SHA
641838353edef69d6595b66c5f09d8133f7a8e54- Parents
-
d583678 - Tree
af3aaf1
6418383
641838353edef69d6595b66c5f09d8133f7a8e54d583678
af3aaf1| Status | File | + | - |
|---|---|---|---|
| M |
gartop/src/gui/theme.rs
|
2 | 0 |
gartop/src/gui/theme.rsmodified@@ -15,6 +15,7 @@ pub struct Theme { | ||
| 15 | 15 | pub swap_color: Color, |
| 16 | 16 | pub network_color: Color, |
| 17 | 17 | pub disk_color: Color, |
| 18 | + pub temp_color: Color, | |
| 18 | 19 | pub border: Color, |
| 19 | 20 | pub graph_bg: Color, |
| 20 | 21 | pub graph_grid: Color, |
@@ -36,6 +37,7 @@ impl Default for Theme { | ||
| 36 | 37 | swap_color: Color::from_hex("#f9e2af").unwrap_or(Color::WHITE), |
| 37 | 38 | network_color: Color::from_hex("#94e2d5").unwrap_or(Color::WHITE), |
| 38 | 39 | disk_color: Color::from_hex("#cba6f7").unwrap_or(Color::WHITE), |
| 40 | + temp_color: Color::from_hex("#fab387").unwrap_or(Color::WHITE), // Catppuccin peach | |
| 39 | 41 | border: Color::from_hex("#585b70").unwrap_or(Color::WHITE), |
| 40 | 42 | graph_bg: Color::from_hex("#11111b").unwrap_or(Color::BLACK), |
| 41 | 43 | graph_grid: Color::from_hex("#313244").unwrap_or(Color::BLACK), |