diff options
author | NNB | 2021-12-02 13:03:02 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-12-13 15:47:30 +0000 |
commit | a9a9d498e87a91d9c069946cffd0480c4c3b50c6 (patch) | |
tree | 833cd92af97ea3199bc8c4e4c0e767dbbd4c40a4 | |
parent | cff5344a135aee6ab101e5782a7278e7370ddd12 (diff) |
Update theme.rs
-rw-r--r-- | helix-view/src/theme.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-view/src/theme.rs b/helix-view/src/theme.rs index ddcdad99..a5dc0609 100644 --- a/helix-view/src/theme.rs +++ b/helix-view/src/theme.rs @@ -16,7 +16,7 @@ pub static DEFAULT_THEME: Lazy<Theme> = Lazy::new(|| { toml::from_slice(include_bytes!("../../theme.toml")).expect("Failed to parse default theme") }); pub static BASE16_DEFAULT_THEME: Lazy<Theme> = Lazy::new(|| { - toml::from_slice(include_bytes!("../../base16_theme.toml")) + toml::from_slice(include_bytes!("../../base16_tty.toml")) .expect("Failed to parse base 16 default theme") }); |