Skip to content

Commit

Permalink
chore(extras): auto-generate extras
Browse files Browse the repository at this point in the history
  • Loading branch information
astronvimbot committed Jul 15, 2024
1 parent 28f2a1d commit 0c6f362
Show file tree
Hide file tree
Showing 4 changed files with 144 additions and 0 deletions.
36 changes: 36 additions & 0 deletions extras/st/astrodark.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
/* 8 normal colors */
"#111317",
"#FF838B",
"#87C05F",
"#DFAB25",
"#5EB7FF",
"#DD97F1",
"#4AC2B8",
"#9B9FA9",

/* 8 bright colors */
"#34363A",
"#FFA6AE",
"#AAE382",
"#FFCE48",
"#81DAFF",
"#FFBAFF",
"#6DE5DB",
"#D0D3DE",

[256] = "#ADB0BB",
[257] = "#26343F",
[258] = "#ADB0BB", /* default foreground colour */
[259] = "#1A1D23", /* default background colour */
};

/*
* Default colors (colorname index)
* foreground, background, cursor, reverse cursor
*/
unsigned int defaultfg = 258;
unsigned int defaultbg = 259;
unsigned int defaultcs = 256;
static unsigned int defaultrcs = 257;
36 changes: 36 additions & 0 deletions extras/st/astrojupiter.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
/* 8 normal colors */
"#D8D6D5",
"#A13F37",
"#467118",
"#805C00",
"#006E89",
"#90437A",
"#007652",
"#9E7876",

/* 8 bright colors */
"#B0AEAD",
"#C9675F",
"#6E9940",
"#A88428",
"#2896B1",
"#B86BA2",
"#289E7A",
"#8B605E",

[256] = "#815654",
[257] = "#BBC9D7",
[258] = "#815654", /* default foreground colour */
[259] = "#FEEEEE", /* default background colour */
};

/*
* Default colors (colorname index)
* foreground, background, cursor, reverse cursor
*/
unsigned int defaultfg = 258;
unsigned int defaultbg = 259;
unsigned int defaultcs = 256;
static unsigned int defaultrcs = 257;
36 changes: 36 additions & 0 deletions extras/st/astrolight.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
/* 8 normal colors */
"#E1E2E4",
"#990000",
"#345E00",
"#7300B8",
"#00508A",
"#9E007C",
"#00615B",
"#737474",

/* 8 bright colors */
"#B9BABC",
"#C12828",
"#5C8628",
"#9B28E0",
"#2878B2",
"#C628A4",
"#288983",
"#595959",

[256] = "#4F4F4F",
[257] = "#E7E9EB",
[258] = "#4F4F4F", /* default foreground colour */
[259] = "#F7F8F8", /* default background colour */
};

/*
* Default colors (colorname index)
* foreground, background, cursor, reverse cursor
*/
unsigned int defaultfg = 258;
unsigned int defaultbg = 259;
unsigned int defaultcs = 256;
static unsigned int defaultrcs = 257;
36 changes: 36 additions & 0 deletions extras/st/astromars.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
/* 8 normal colors */
"#281E22",
"#DF8489",
"#84A860",
"#C3963D",
"#4FA9C6",
"#CD87BA",
"#4FAD97",
"#8B7079",

/* 8 bright colors */
"#41383A",
"#FFA7AC",
"#A7CB83",
"#E6B960",
"#72CCE9",
"#F0AADD",
"#72D0BA",
"#C8D5DF",

[256] = "#A5B2BC",
[257] = "#1B282C",
[258] = "#A5B2BC", /* default foreground colour */
[259] = "#1E1517", /* default background colour */
};

/*
* Default colors (colorname index)
* foreground, background, cursor, reverse cursor
*/
unsigned int defaultfg = 258;
unsigned int defaultbg = 259;
unsigned int defaultcs = 256;
static unsigned int defaultrcs = 257;

0 comments on commit 0c6f362

Please sign in to comment.