colorscheme updates - st - personal variant of st
 (HTM) git clone https://git.drkhsh.at/st.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 168735ac5967002348b31d8d431ee13f27d56829
 (DIR) parent d883e3710b111feca93ba915f2aaba00c8063a39
 (HTM) Author: drkhsh <me@drkhsh.at>
       Date:   Sun,  2 Jun 2024 21:42:09 +0200
       
       colorscheme updates
       
       Diffstat:
         A colors/catppuccin.h                 |      36 +++++++++++++++++++++++++++++++
         D colors/onedark.h                    |      31 -------------------------------
       
       2 files changed, 36 insertions(+), 31 deletions(-)
       ---
 (DIR) diff --git a/colors/catppuccin.h b/colors/catppuccin.h
       @@ -0,0 +1,36 @@
       +/* Terminal colors (16 first used in escape sequence) */
       +static const char *colorname[] = {
       +        /* 8 normal colors */
       +        "#45475A",
       +        "#F38BA8",
       +        "#A6E3A1",
       +        "#F9E2AF",
       +        "#89B4FA",
       +        "#F5C2E7",
       +        "#94E2D5",
       +        "#BAC2DE",
       +
       +        /* 8 bright colors */
       +        "#585B70",
       +        "#F38BA8",
       +        "#A6E3A1",
       +        "#F9E2AF",
       +        "#89B4FA",
       +        "#F5C2E7",
       +        "#94E2D5",
       +        "#A6ADC8",
       +
       +[256] = "#CDD6F4", /* default foreground colour */
       +[257] = "#1E1E2E", /* default background colour */
       +[258] = "#F5E0DC", /*575268*/
       +
       +};
       +
       +
       +/*
       + * foreground, background, cursor, reverse cursor
       + */
       +unsigned int defaultfg = 256;
       +unsigned int defaultbg = 257;
       +unsigned int defaultcs = 258;
       +static unsigned int defaultrcs = 258;
 (DIR) diff --git a/colors/onedark.h b/colors/onedark.h
       @@ -1,31 +0,0 @@
       -/* Terminal colors (16 first used in escape sequence) */
       -static const char *colorname[] = {
       -        /* 8 normal colors */
       -          "#1e2127",
       -          "#e06c75",
       -          "#98c379",
       -          "#d19a66",
       -          "#61afef",
       -          "#c678dd",
       -          "#56b6c2",
       -        "#828791",
       -
       -        /* 8 bright colors */
       -          "#5c6370",
       -          "#e06c75",
       -          "#98c379",
       -          "#d19a66",
       -          "#61afef",
       -          "#c678dd",
       -          "#56b6c2",
       -          "#e6efff",
       -
       -          [255] = 0,
       -
       -          /* more colors can be added after 255 to use with DefaultXX */
       -          "#add8e6", /* 256 -> cursor */
       -          "#555555", /* 257 -> rev cursor*/
       -        "#ffffff", /* 258 -> fg */
       -        "#1e2127", /* 259 -> bg */
       -};
       -