This commit is contained in:
Jeremy Soller 2024-01-31 15:26:43 -07:00
parent 10da8f36db
commit b65a402bb5
No known key found for this signature in database
GPG key ID: D02FD439211AF56F

View file

@ -94,7 +94,10 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
Ok(mut theme) => {
// Use cosmic theme background
theme.settings.background = Some(syntect::highlighting::Color {
r: 0, g: 0, b: 0, a: 0
r: 0,
g: 0,
b: 0,
a: 0,
});
theme_set.themes.insert(theme_name.to_string(), theme);
}