aboutsummaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorMateja <mail@matejamaric.com>2020-12-09 16:17:59 +0100
committerMateja <mail@matejamaric.com>2020-12-09 16:17:59 +0100
commitf5644c06b741ee51089a10286fd89a739d3d572f (patch)
tree74ffb4a3fbce2ca90ef3c1c5b80b9e77301d9f26 /config.h
downloadmterm-f5644c06b741ee51089a10286fd89a739d3d572f.tar.gz
mterm-f5644c06b741ee51089a10286fd89a739d3d572f.zip
First commit.
Diffstat (limited to 'config.h')
-rw-r--r--config.h35
1 files changed, 35 insertions, 0 deletions
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;