summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authormrdotx2024-02-13 18:47:54 +0100
committermrdotx2024-02-13 18:47:54 +0100
commit87eb0085641f9881465fa80f9e08db6f6102ad2c (patch)
treed4c0ab61c03fdd1d869a7c744be9aff9663a9202
parent470663308acc664d3fc088e5a256cb6946d0c58c (diff)
downloadaur-87eb0085641f9881465fa80f9e08db6f6102ad2c.tar.gz
overlay colors changed from yellow/black to blue/white
-rw-r--r--24-bit-color.patch8
1 files changed, 6 insertions, 2 deletions
diff --git a/24-bit-color.patch b/24-bit-color.patch
index 3fa3b1d86efc..6209afdbf26b 100644
--- a/24-bit-color.patch
+++ b/24-bit-color.patch
@@ -448,7 +448,7 @@
typedef int32_t tlen_t; // was int16_t, but this results in smaller code and memory use
typedef int32_t tlen_t_; // specifically for use in the line_t structure
-@@ -351,43 +355,52 @@
+@@ -351,46 +355,55 @@
#define RS_None 0
// GET_BGATTR depends on RS_fgShift > RS_bgShift
@@ -522,7 +522,11 @@
+#define RS_attrMask ((rend_t) (RS_baseattrMask | RS_fontMask))
#define DEFAULT_RSTYLE (RS_None | (Color_fg << RS_fgShift) | (Color_bg << RS_bgShift))
- #define OVERLAY_RSTYLE (RS_None | (Color_Black << RS_fgShift) | (Color_Yellow << RS_bgShift))
+-#define OVERLAY_RSTYLE (RS_None | (Color_Black << RS_fgShift) | (Color_Yellow << RS_bgShift))
++#define OVERLAY_RSTYLE (RS_None | (Color_White << RS_fgShift) | (Color_Blue << RS_bgShift))
+
+ enum {
+ C0_NUL = 0x00,
@@ -538,7 +551,9 @@
#endif
};