Catppuccin colors as default colors.

This commit is contained in:
CronyAkatsuki 2022-10-11 16:18:10 +02:00
parent c2020e56f6
commit 1b0f74be49

View File

@ -11,8 +11,8 @@ static const unsigned int fgalpha = OPAQUE;
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
static const char *colors[SchemeLast][2] = {
/* fg bg */
[SchemeNorm] = { "#bbbbbb", "#222222" },
[SchemeSel] = { "#eeeeee", "#005577" },
[SchemeNorm] = { "#8aadf4", "#1e2030" },
[SchemeSel] = { "#1e2030", "#8aadf4" },
[SchemeOut] = { "#000000", "#00ffff" },
};
static const unsigned int alphas[SchemeLast][2] = {