|
@@ -11,12 +11,15 @@ static const unsigned int bgalpha = 0xe0;
|
|
|
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 */
|
|
|
+/* fg bg */
|
|
|
[SchemeNorm] = { "#bbbbbb", "#222222" },
|
|
|
[SchemeSel] = { "#eeeeee", "#005577" },
|
|
|
[SchemeOut] = { "#000000", "#00ffff" },
|
|
|
-};
|
|
|
-static const unsigned int alphas[SchemeLast][2] = {
|
|
|
+ [SchemeNorm] = { "#ebdbb2", "#282828" },
|
|
|
+ [SchemeSel] = { "#ebdbb2", "#98971a" },
|
|
|
+ [SchemeOut] = { "#ebdbb2", "#8ec07c" },
|
|
|
+ };
|
|
|
+ static const unsigned int alphas[SchemeLast][2] = {
|
|
|
/* fgalpha bgalphga */
|
|
|
[SchemeNorm] = { fgalpha, bgalpha },
|
|
|
[SchemeSel] = { fgalpha, bgalpha },
|
|
@@ -31,3 +34,6 @@ static unsigned int lines = 0;
|
|
|
* for example: " /?\"&[]"
|
|
|
*/
|
|
|
static const char worddelimiters[] = " ";
|
|
|
+
|
|
|
+/* Size of the window border */
|
|
|
+static unsigned int border_width = 3;
|