changeset 2696:b294c2efea35

Add another color option to citymaps.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 03 Mar 2024 22:09:43 +0200
parents 64365e055dba
children 8490ca59f4e5
files src/libmaputils.c src/libmaputils.h
diffstat 2 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/libmaputils.c	Sun Mar 03 20:49:56 2024 +0200
+++ b/src/libmaputils.c	Sun Mar 03 22:09:43 2024 +0200
@@ -28,6 +28,7 @@
 
     // extra colors, not in ANSI
     { 0xff, 0x00, 0x00, 31,    ANSI_BOLD, true  }, // col_very_light_red
+    { 0x33, 0x33, 0x33, 30,    ANSI_OFF,  true  }, // col_very_dark_gray
 };
 
 const int nmapColors = sizeof(mapColors) / sizeof(mapColors[0]);
--- a/src/libmaputils.h	Sun Mar 03 20:49:56 2024 +0200
+++ b/src/libmaputils.h	Sun Mar 03 22:09:43 2024 +0200
@@ -81,6 +81,7 @@
     col_light_magenta,
 
     col_very_light_red,
+    col_very_dark_gray,
 };