Added dark mode colors
This commit is contained in:
parent
592f4a917f
commit
d72c5f04ba
43
config.h
43
config.h
@ -5,7 +5,7 @@
|
|||||||
*
|
*
|
||||||
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
|
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
|
||||||
*/
|
*/
|
||||||
static char *font = "Iosevka Term:style=Regular:pixelsize=14:antialias=true:autohint=true";
|
static char *font = "Iosevka Term:pixelsize=14:antialias=true:autohint=true";
|
||||||
static int borderpx = 5;
|
static int borderpx = 5;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -16,7 +16,7 @@ static int borderpx = 5;
|
|||||||
* 4: value of shell in /etc/passwd
|
* 4: value of shell in /etc/passwd
|
||||||
* 5: value of shell in config.h
|
* 5: value of shell in config.h
|
||||||
*/
|
*/
|
||||||
static char *shell = "/usr/intel/bin/tcsh";
|
static char *shell = "/usr/bin/sh";
|
||||||
char *utmp = NULL;
|
char *utmp = NULL;
|
||||||
char *stty_args = "stty raw pass8 nl -echo -iexten -cstopb 38400";
|
char *stty_args = "stty raw pass8 nl -echo -iexten -cstopb 38400";
|
||||||
|
|
||||||
@ -137,29 +137,32 @@ static const char *colorname[] = {
|
|||||||
// [257] = "#4D0D0C", /* foreground */
|
// [257] = "#4D0D0C", /* foreground */
|
||||||
|
|
||||||
/* Theme: Day After Tomorrow */
|
/* Theme: Day After Tomorrow */
|
||||||
|
/* Light Dark */
|
||||||
/* 8 normal colors */
|
/* 8 normal colors */
|
||||||
[0] = "#000000", /* black */
|
[0] = /* "#000000" */ "#000000" , /* black */
|
||||||
[1] = "#AF2323", /* red */
|
[1] = /* "#AF2323" */ "#CF3333" , /* red */
|
||||||
[2] = "#069A02", /* green */
|
[2] = /* "#069A02" */ "#26BA22" , /* green */
|
||||||
[3] = "#B9C901", /* yellow */
|
[3] = /* "#B9C901" */ "#B9E921" , /* yellow */
|
||||||
[4] = "#013C9B", /* blue */
|
[4] = /* "#013C9B" */ "#215CBB" , /* blue */
|
||||||
[5] = "#74069C", /* magenta */
|
[5] = /* "#74069C" */ "#B446DC" , /* magenta */
|
||||||
[6] = "#04666C", /* cyan */
|
[6] = /* "#04666C" */ "#24868C" , /* cyan */
|
||||||
[7] = "#BBBBBB", /* gray */
|
[7] = /* "#BBBBBB" */ "#DBDBDB" , /* gray */
|
||||||
|
|
||||||
/* 8 bright colors */
|
/* 8 bright colors */
|
||||||
[8] = "#000000", /* black */
|
[8] = /* "#000000" */ "#000000" , /* black */
|
||||||
[9] = "#DE0707", /* red */
|
[9] = /* "#DE0707" */ "#DE0707" , /* red */
|
||||||
[10] = "#05C90F", /* green */
|
[10] = /* "#05C90F" */ "#05C90F" , /* green */
|
||||||
[11] = "#DDDF04", /* yellow */
|
[11] = /* "#DDDF04" */ "#DDDF04" , /* yellow */
|
||||||
[12] = "#0656DA", /* blue */
|
[12] = /* "#0656DA" */ "#0656DA" , /* blue */
|
||||||
[13] = "#8407D1", /* magenta */
|
[13] = /* "#8407D1" */ "#8407D1" , /* magenta */
|
||||||
[14] = "#05959E", /* cyan */
|
[14] = /* "#05959E" */ "#05959E" , /* cyan */
|
||||||
[15] = "#CCCCCC", /* gray */
|
[15] = /* "#CCCCCC" */ "#EEEEEE" , /* gray */
|
||||||
|
|
||||||
/* special colors */
|
/* special colors */
|
||||||
[256] = "#111111", /* foreground */
|
/* Dark */
|
||||||
[257] = "#FFFFFF", /* background */
|
[256] = /* "#111111" */ "#FFFFFF" , /* foreground */
|
||||||
|
[257] = /* "#FFFFFF" */ "#111111" , /* background */
|
||||||
|
|
||||||
[258] = "#4D0D0C", /* cursor */
|
[258] = "#4D0D0C", /* cursor */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
18
config.mk
18
config.mk
@ -4,21 +4,21 @@ VERSION = 0.8.2
|
|||||||
# Customize below to fit your system
|
# Customize below to fit your system
|
||||||
|
|
||||||
# paths
|
# paths
|
||||||
PREFIX = /p/acd/proj/work/fe/masolkar/apps
|
PREFIX = /home/mahesh/apps/install
|
||||||
MANPREFIX = $(PREFIX)/share/man
|
MANPREFIX = $(PREFIX)/share/man
|
||||||
|
|
||||||
X11INC = /usr/intel/pkgs/X11/R7.6/include
|
X11INC = /usr/X11R6/include
|
||||||
X11LIB = /usr/intel/pkgs/X11/R7.6/lib
|
X11LIB = /usr/X11R6/lib
|
||||||
|
|
||||||
PKG_CONFIG = pkg-config
|
PKG_CONFIG = pkg-config
|
||||||
|
|
||||||
# freetype
|
|
||||||
FREETYPELIBS = -lfontconfig -lXft
|
|
||||||
FREETYPEINC = /usr/include/freetype2
|
|
||||||
|
|
||||||
# includes and libs
|
# includes and libs
|
||||||
INCS = -I$(X11INC) -I${FREETYPEINC}
|
INCS = -I$(X11INC) \
|
||||||
LIBS = -L$(X11LIB) -lm -lrt -lX11 -lutil ${FREETYPELIBS}
|
`$(PKG_CONFIG) --cflags fontconfig` \
|
||||||
|
`$(PKG_CONFIG) --cflags freetype2`
|
||||||
|
LIBS = -L$(X11LIB) -lm -lrt -lX11 -lutil -lXft \
|
||||||
|
`$(PKG_CONFIG) --libs fontconfig` \
|
||||||
|
`$(PKG_CONFIG) --libs freetype2`
|
||||||
|
|
||||||
# flags
|
# flags
|
||||||
STCPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600
|
STCPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600
|
||||||
|
Loading…
Reference in New Issue
Block a user