aboutsummaryrefslogtreecommitdiff
path: root/src/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/src/config.h b/src/config.h
index 0a348c4..f1f5b59 100644
--- a/src/config.h
+++ b/src/config.h
@@ -22,7 +22,7 @@
#define CONFIG_MIN_WIDTH 20
#define CONFIG_MIN_HEIGHT 5
-/* Font name */
+/* Font */
#define CONFIG_FONT_NAME "Monospace 9"
/* Color palette definition */
@@ -30,27 +30,27 @@
#define CONFIG_PALETTE_SIZE 16
static const char *CONFIG_COLOR_PALETTE[CONFIG_PALETTE_SIZE] = {
- "#000000000000", /* 0 Black */
- "#959551513a3a", /* 1 Red */
- "#3a3a95955151", /* 2 Green */
- "#7e7e95953a3a", /* 3 Yellow */
- "#3d3d55558d8d", /* 4 Blue */
- "#95953a3a7e7e", /* 5 Magenta */
- "#3a3a7e7e9595", /* 6 Cyan */
- "#d9d9d9d9d9d9", /* 7 White */
- "#444444444444", /* 8 Black */
- "#c1c178786060", /* 9 Red */
- "#6060c1c17878", /* 10 Green */
- "#a9a9c1c16060", /* 11 Yellow */
- "#5f5f7a7ababa", /* 12 Blue */
- "#c1c16060a9a9", /* 13 Magenta */
- "#6060a9a9c1c1", /* 14 Cyan */
- "#ffffffffffff", /* 15 White */
+ "#000000", /* 0 Black */
+ "#95513a", /* 1 Red */
+ "#3a9551", /* 2 Green */
+ "#7e953a", /* 3 Yellow */
+ "#3d558d", /* 4 Blue */
+ "#953a7e", /* 5 Magenta */
+ "#3a7e95", /* 6 Cyan */
+ "#d9d9d9", /* 7 White */
+ "#262626", /* 8 Black */
+ "#c17860", /* 9 Red */
+ "#60c178", /* 10 Green */
+ "#a9c160", /* 11 Yellow */
+ "#5f7aba", /* 12 Blue */
+ "#c160a9", /* 13 Magenta */
+ "#60a9c1", /* 14 Cyan */
+ "#ffffff", /* 15 White */
};
/* Foreground and background. */
-#define CONFIG_FOREGROUND_COLOR "#d9d9e6e6f2f2" /* COLOR_PALETTE[7] */
-#define CONFIG_BACKGROUND_COLOR "#0d0d19192626" /* COLOR_PALETTE[0] */
+#define CONFIG_FOREGROUND_COLOR "#d9e6f2" /* COLOR_PALETTE[7] */
+#define CONFIG_BACKGROUND_COLOR "#0d1926" /* COLOR_PALETTE[0] */
/* Scrollback lines (0 means disabled; negative means "infinite") */
#define CONFIG_SCROLLBACK_LINES 2000