From f5644c06b741ee51089a10286fd89a739d3d572f Mon Sep 17 00:00:00 2001 From: Mateja Date: Wed, 9 Dec 2020 16:17:59 +0100 Subject: First commit. --- config.h | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 config.h (limited to 'config.h') diff --git a/config.h b/config.h new file mode 100644 index 0000000..4967a55 --- /dev/null +++ b/config.h @@ -0,0 +1,35 @@ +static const int max_lines = 10000; +static const int scroll_on_output = 0; +static const int scroll_on_keystroke = 1; +static const int mouse_autohide = 0; + + +static const float transparency = 0.8; + +static const int colors[] = { + 0x3b4252, + 0xbf616a, + 0xa3be8c, + 0xebcb8b, + 0x81a1c1, + 0xb48ead, + 0x88c0d0, + 0xe5e9f0, + 0x4c566a, + 0xbf616a, + 0xa3be8c, + 0xebcb8b, + 0x81a1c1, + 0xb48ead, + 0x8fbcbb, + 0xeceff4 +}; + +static const int cursor = 0xd8dee9; +static const int cursor_foreground = 0x2e3440; + +static const int foreground = 0xd8dee9; +static const int foreground_bold = 0xd8dee9; +static const int background = 0x2e3440; + +static const int highlight = 0x4c566a; -- cgit v1.2.3