aboutsummaryrefslogtreecommitdiff
path: root/src/consts.rs
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-03-14 17:15:46 +0000
committerAkshay <[email protected]>2021-03-14 17:15:46 +0000
commit9844d702a1f33ca04815166f539616a519a89cac (patch)
tree0c6f539ce9770737bf16852e78f83ba8d8420821 /src/consts.rs
parent2665972d0c15fe6b2cea7ffb0c34829c9c163c56 (diff)
add basic statusline widget; text drawing support
Diffstat (limited to 'src/consts.rs')
-rw-r--r--src/consts.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/consts.rs b/src/consts.rs
index b5cea43..8c90693 100644
--- a/src/consts.rs
+++ b/src/consts.rs
@@ -4,3 +4,4 @@ pub const GRID_COLOR: Color = Color::RGB(64, 64, 64);
4pub const WHITE: Color = Color::RGB(255, 255, 255); 4pub const WHITE: Color = Color::RGB(255, 255, 255);
5pub const BLACK: Color = Color::RGB(0, 0, 0); 5pub const BLACK: Color = Color::RGB(0, 0, 0);
6 6
7pub const FONT_PATH: &'static str = "./assets/NerdInput-Regular.ttf";