Another copy of my dotfiles. Because I don't completely trust GitHub.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

27 lines
947 B

/* This file is used for color settings */
static const char *colors[SchemeLast][2] = {
/* fg bg */
[SchemeNorm] = { "#e5e9f0", "#0f111a" },
[SchemeSel] = { "#0f111a", "#bf616a" },
[SchemeOut] = { "#000000", "#00ffff" },
[SchemeNormHighlight] = { "#88c0d0", "#0f111a" },
[SchemeSelHighlight] = { "#88c0d0", "#bf616a" },
// [SchemeHp] = { "#e5e9f0", "#4c566a" },
};
static double opacity = 1.0; /* -o option; defines alpha translucency */
static const unsigned int baralpha = 0xFF;
static const unsigned int borderalpha = OPAQUE;
static const unsigned int alphas[][3] = {
/* fg bg border */
[SchemeNorm] = { OPAQUE, baralpha, borderalpha },
[SchemeSel] = { OPAQUE, baralpha, borderalpha },
[SchemeOut] = { OPAQUE, baralpha, borderalpha },
[SchemeNormHighlight] = { OPAQUE, baralpha, borderalpha },
[SchemeSelHighlight] = { OPAQUE, baralpha, borderalpha },
};