add theme

This commit is contained in:
Ray Elliott 2020-03-25 21:00:15 +00:00
parent d837119b93
commit 831c507f7f
2 changed files with 73 additions and 0 deletions

35
autumn-fire/kitty.conf Normal file
View File

@ -0,0 +1,35 @@
foreground #ea7607
background #170808
cursor #ffbd08
cursor_text_color #141414
selection_foreground #ffffff
selection_background #170808
url_color #ffbd08
color0 #0a0303
color8 #544343
color1 #a60000
color9 #cc0000
color2 #d6651a
color10 #f2731e
color3 #d6cd36
color11 #fff448
color4 #823302
color12 #a03f02
color5 #c97f10
color13 #f3950a
color6 #c9a119
color14 #f4c31e
color7 #715c5c
color15 #eed793

38
autumn-fire/st.h Normal file
View File

@ -0,0 +1,38 @@
/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
/* 8 normal colors */
[0] = "#000000", /* black */
[1] = "#a60000", /* red */
[2] = "#d6651a", /* green */
[3] = "#d5cd36", /* yellow */
[4] = "#823302", /* blue */
[5] = "#c97f10", /* magenta */
[6] = "#c9a119", /* cyan */
[7] = "#715c5c", /* white */
/* 8 bright colors */
[8] = "#544343", /* black */
[9] = "#cc0000", /* red */
[10] = "#f2731e", /* green */
[11] = "#fff448", /* yellow */
[12] = "#a03f02", /* blue */
[13] = "#f3950a", /* magenta */
[14] = "#f4c31e", /* cyan */
[15] = "#eed793", /* white */
[255] = 0,
/* more colors can be added after 255 to use with DefaultXX */
[256] = "#170808", /* background */
[257] = "#ea7607", /* foreground */
};
/*
* Default colors (colorname index)
* foreground, background, cursor, reverse cursor
*/
unsigned int defaultfg = 257;
unsigned int defaultbg = 256;
static unsigned int defaultcs = 12;
static unsigned int defaultrcs = 256;