From d058f1648071961f8e2790a8111407706d254294 Mon Sep 17 00:00:00 2001 From: Joe Date: Tue, 23 Aug 2022 20:29:11 +0200 Subject: colors update --- config.h | 4 ++-- config.mk | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config.h b/config.h index b518fd9..a9c369a 100644 --- a/config.h +++ b/config.h @@ -14,8 +14,8 @@ static const char *prompt = NULL; /* -p option; prompt to the left of inpu static const char *colors[SchemeLast][2] = { /* fg bg */ [SchemeNorm] = { "#ebdbb2", "#1d2021" }, - [SchemeSel] = { "#ebdbb2", "#990000" }, - [SchemeSelHighlight] = { "#fabd2f", "#990000" }, + [SchemeSel] = { "#ebdbb2", "#6e0000" }, + [SchemeSelHighlight] = { "#fabd2f", "#6e0000" }, [SchemeNormHighlight] = { "#fabd2f", "#1d2021" }, [SchemeOut] = { "#000000", "#00ffff" }, }; diff --git a/config.mk b/config.mk index 404c369..c4964db 100644 --- a/config.mk +++ b/config.mk @@ -24,7 +24,7 @@ LIBS = -L$(X11LIB) -lX11 $(XINERAMALIBS) $(FREETYPELIBS) -lm # flags CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -DVERSION=\"$(VERSION)\" $(XINERAMAFLAGS) -CFLAGS = -std=c99 -pedantic -Wall -march=tigerlake -O3 -pipe $(INCS) $(CPPFLAGS) +CFLAGS = -std=c99 -pedantic -Wall -march=ivybridge -O3 -pipe $(INCS) $(CPPFLAGS) LDFLAGS = $(LIBS) # compiler and linker -- cgit v1.2.3