/// Return true if the current terminal is one we know how to theme. v1: Ghostty only.
pubfnsupported_terminal()->bool{ifmatches!(std::env::var("TERM_PROGRAM").ok().as_deref(),Some("ghostty")){returntrue;}std::env::var("TERM").ok().is_some_and(|t|t.starts_with("ghostty"))}