summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMica White <botahamec@outlook.com>2025-12-07 23:58:45 -0500
committerMica White <botahamec@outlook.com>2025-12-07 23:58:45 -0500
commit655685c65afe5ed5314442b25c549e414b0ca654 (patch)
treee37702b7f6510f442b2a9b8bd84cb2ec3e4dca9a
parent04c2d5370bd36d463af31d1fc77653780498b6be (diff)
Use a more accessible themeHEADmain
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 9cda2d6..6028801 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -10,7 +10,7 @@ fn main() {
let syntax_set: SyntaxSet =
from_uncompressed_data(include_bytes!("../assets/newlines.packdump")).unwrap();
let theme_set = from_binary::<ThemeSet>(include_bytes!("../assets/themepack.themedump"));
- let mut theme = theme_set.themes["Catppuccin Latte"].clone();
+ let mut theme = theme_set.themes["Coldark-Cold"].clone();
theme.settings.background = None;
let filename = std::env::args().nth(1).map(PathBuf::from);