summaryrefslogtreecommitdiff
path: root/helix-term/src/ui/mod.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-05-07 08:38:25 +0000
committerBlaž Hrastnik2021-05-07 08:42:09 +0000
commitf0712479cbdff239347049461be1901e13950044 (patch)
treeb1837b7336a45c21c1baccfd8cca9aac76d2b3c5 /helix-term/src/ui/mod.rs
parentf87dee926a08162f937cb08454c452c7c4dfdb77 (diff)
Define text color (mostly) in theme.toml.
Diffstat (limited to 'helix-term/src/ui/mod.rs')
-rw-r--r--helix-term/src/ui/mod.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/helix-term/src/ui/mod.rs b/helix-term/src/ui/mod.rs
index a16b7ef0..dc1ec6b6 100644
--- a/helix-term/src/ui/mod.rs
+++ b/helix-term/src/ui/mod.rs
@@ -24,12 +24,6 @@ use helix_view::{Document, Editor, View};
use std::path::{Path, PathBuf};
-// TODO: temp
-#[inline(always)]
-pub fn text_color() -> Style {
- Style::default().fg(Color::Rgb(219, 191, 239)) // lilac
-}
-
pub fn regex_prompt(
cx: &mut crate::commands::Context,
prompt: String,