From bdf6a7b5e2aeb84aa0182e8f61ebbd7512aeb4d5 Mon Sep 17 00:00:00 2001 From: siduck76 Date: Thu, 10 Jun 2021 13:51:27 +0530 Subject: [PATCH] change highlight colors --- config.def.h | 4 ++-- config.h | 7 ++++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/config.def.h b/config.def.h index 301252960e9485d27634a5cea1f83d6cfb716eb3..d4c32ed377a295059beb5ab822865a5315d0c1f9 100644 --- a/config.def.h +++ b/config.def.h @@ -138,7 +138,7 @@ static const char *colorname[] = { /* more colors can be added after 255 to use with DefaultXX */ "#add8e6", /* 256 -> cursor */ "#555555", /* 257 -> rev cursor*/ - "#282828", /* 258 -> bg */ + "#282c34", /* 258 -> bg */ "#ffffff", /* 259 -> fg */ }; @@ -156,7 +156,7 @@ unsigned int const currentBg = 6, buffSize = 2048; /// Enable double / triple click yanking / selection of word / line. int const mouseYank = 1, mouseSelect = 0; /// [Vim Browse] Colors for search results currently on screen. -unsigned int const highlightBg = 160, highlightFg = 15; +unsigned int const highlightBg = 258, highlightFg = 15; char const wDelS[] = "!\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~", wDelL[] = " \t"; char *nmKeys [] = { ///< Shortcusts executed in normal mode "R/Building\nN", "r/Building\n", "X/juli@machine\nN", "x/juli@machine\n", diff --git a/config.h b/config.h index 3658f3599eb99fae7308b64a882cfcad9c07a115..a7e7d70aee1fe719c813caf14887f78dab1f90c3 100644 --- a/config.h +++ b/config.h @@ -138,7 +138,7 @@ static const char *colorname[] = { /* more colors can be added after 255 to use with DefaultXX */ "#add8e6", /* 256 -> cursor */ "#555555", /* 257 -> rev cursor*/ - "#282828", /* 258 -> bg */ + "#282c34", /* 258 -> bg */ "#ffffff", /* 259 -> fg */ }; @@ -152,11 +152,12 @@ unsigned int defaultbg = 258; unsigned int defaultcs = 256; unsigned int defaultrcs = 257; -unsigned int const currentBg = 6, buffSize = 2048; +unsigned int const currentBg = 0, buffSize = 2048; /// Enable double / triple click yanking / selection of word / line. int const mouseYank = 1, mouseSelect = 0; /// [Vim Browse] Colors for search results currently on screen. -unsigned int const highlightBg = 160, highlightFg = 15; +unsigned int const highlightBg = 250, highlightFg = 250; + char const wDelS[] = "!\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~", wDelL[] = " \t"; char *nmKeys [] = { ///< Shortcusts executed in normal mode "R/Building\nN", "r/Building\n", "X/juli@machine\nN", "x/juli@machine\n",