Add gpu_color to theme (Catppuccin sky)
- SHA
9d84a3d6e35be877dfd998740cd6cd484a193e0a- Parents
-
debac17 - Tree
42f2332
9d84a3d
9d84a3d6e35be877dfd998740cd6cd484a193e0adebac17
42f2332| Status | File | + | - |
|---|---|---|---|
| M |
gartop/src/gui/theme.rs
|
2 | 0 |
gartop/src/gui/theme.rsmodified@@ -16,6 +16,7 @@ pub struct Theme { | |||
| 16 | pub network_color: Color, | 16 | pub network_color: Color, |
| 17 | pub disk_color: Color, | 17 | pub disk_color: Color, |
| 18 | pub temp_color: Color, | 18 | pub temp_color: Color, |
| 19 | + pub gpu_color: Color, | ||
| 19 | pub border: Color, | 20 | pub border: Color, |
| 20 | pub graph_bg: Color, | 21 | pub graph_bg: Color, |
| 21 | pub graph_grid: Color, | 22 | pub graph_grid: Color, |
@@ -38,6 +39,7 @@ impl Default for Theme { | |||
| 38 | network_color: Color::from_hex("#94e2d5").unwrap_or(Color::WHITE), | 39 | network_color: Color::from_hex("#94e2d5").unwrap_or(Color::WHITE), |
| 39 | disk_color: Color::from_hex("#cba6f7").unwrap_or(Color::WHITE), | 40 | disk_color: Color::from_hex("#cba6f7").unwrap_or(Color::WHITE), |
| 40 | temp_color: Color::from_hex("#fab387").unwrap_or(Color::WHITE), // Catppuccin peach | 41 | temp_color: Color::from_hex("#fab387").unwrap_or(Color::WHITE), // Catppuccin peach |
| 42 | + gpu_color: Color::from_hex("#89dceb").unwrap_or(Color::WHITE), // Catppuccin sky | ||
| 41 | border: Color::from_hex("#585b70").unwrap_or(Color::WHITE), | 43 | border: Color::from_hex("#585b70").unwrap_or(Color::WHITE), |
| 42 | graph_bg: Color::from_hex("#11111b").unwrap_or(Color::BLACK), | 44 | graph_bg: Color::from_hex("#11111b").unwrap_or(Color::BLACK), |
| 43 | graph_grid: Color::from_hex("#313244").unwrap_or(Color::BLACK), | 45 | graph_grid: Color::from_hex("#313244").unwrap_or(Color::BLACK), |