From 57d6711277750c7c6fd6d97a30e678ba4ada3753 Mon Sep 17 00:00:00 2001 From: ray Date: Sat, 27 Jul 2019 21:43:47 +0100 Subject: [PATCH] add ochre st theme --- ochre/st.txt | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 ochre/st.txt diff --git a/ochre/st.txt b/ochre/st.txt new file mode 100644 index 0000000..0c01896 --- /dev/null +++ b/ochre/st.txt @@ -0,0 +1,27 @@ +/* Terminal colors (16 first used in escape sequence) */ +static const char *colorname[] = { + /* 8 normal colors */ + [0] = "#212020", /* black */ + [1] = "#653e3e", /* red */ + [2] = "#5d5151", /* green */ + [3] = "#857173", /* yellow */ + [4] = "#705e60", /* blue */ + [5] = "#70595b", /* magenta */ + [6] = "#8b787a", /* cyan */ + [7] = "#a1a0a0", /* white */ + + /* 8 bright colors */ + [8] = "#302e2e", /* black */ + [9] = "#754747", /* red */ + [10] = "#796c6c", /* green */ + [11] = "#a49395", /* yellow */ + [12] = "#958a8c", /* blue */ + [13] = "#937e80", /* magenta */ + [14] = "#af999c", /* cyan */ + [15] = "#c5c2c2", /* white */ + + [255] = 0, + + /* special colors */ + [256] = "#171717", /* background */ + [257] = "#5b5b5b", /* foreground */