diff --git a/config.h b/config.h index 1722f66..d2fa895 100644 --- a/config.h +++ b/config.h @@ -96,41 +96,40 @@ unsigned int tabspaces = 4; /* Terminal colors (16 first used in escape sequence) */ static const char *colorname[] = { /* 8 normal colors */ - "black", - "red3", - "green3", - "yellow3", - "blue2", - "magenta3", - "cyan3", - "gray90", + "#282A36", + "#F37F97", + "#5ADECD", + "#F2A272", + "#8897F4", + "#C574DD", + "#79E6F3", + "#FDFDFD", - /* 8 bright colors */ - "gray50", - "red", - "green", - "yellow", - "#5c5cff", - "magenta", - "cyan", - "white", + "#414458", + "#FF4971", + "#18E3C8", + "#FF8037", + "#556FFF", + "#B043D1", + "#3FDCEE", + "#BEBEC1", [255] = 0, /* more colors can be added after 255 to use with DefaultXX */ - "#cccccc", - "#555555", + "#1D1F28", + "#FDFDFD", + "#C574DD" }; - /* * Default colors (colorname index) * foreground, background, cursor, reverse cursor */ -unsigned int defaultfg = 7; -unsigned int defaultbg = 0; -static unsigned int defaultcs = 256; -static unsigned int defaultrcs = 257; +unsigned int defaultfg = 257; +unsigned int defaultbg = 256; +static unsigned int defaultcs = 258; +static unsigned int defaultrcs = 258; /* * Default shape of cursor diff --git a/st b/st new file mode 100755 index 0000000..78dd5ea Binary files /dev/null and b/st differ diff --git a/st.o b/st.o new file mode 100644 index 0000000..6a5b794 Binary files /dev/null and b/st.o differ diff --git a/x.o b/x.o new file mode 100644 index 0000000..5f3add0 Binary files /dev/null and b/x.o differ