summaryrefslogtreecommitdiff
path: root/dmenu/themes
diff options
context:
space:
mode:
Diffstat (limited to 'dmenu/themes')
-rw-r--r--dmenu/themes/cicada.h4
-rw-r--r--dmenu/themes/rurbania.h14
2 files changed, 16 insertions, 2 deletions
diff --git a/dmenu/themes/cicada.h b/dmenu/themes/cicada.h
index c08fee7..de0caff 100644
--- a/dmenu/themes/cicada.h
+++ b/dmenu/themes/cicada.h
@@ -1,8 +1,8 @@
static const char *colors[SchemeLast][2] = {
/* fg bg */
[SchemeNorm] = { "#bbbbbb", "#0c0c0c" },
- [SchemeSel] = { "#eeeeee", "#880" },
- [SchemeOut] = { "#000000", "#880" },
+ [SchemeSel] = { "#eeeeee", "#888" },
+ [SchemeOut] = { "#000000", "#888" },
};
//static const unsigned int alpha = 0xf9;
static const unsigned int alpha = 0xff;
diff --git a/dmenu/themes/rurbania.h b/dmenu/themes/rurbania.h
new file mode 100644
index 0000000..330e314
--- /dev/null
+++ b/dmenu/themes/rurbania.h
@@ -0,0 +1,14 @@
+static const char *colors[SchemeLast][2] = {
+ /* fg bg */
+ [SchemeNorm] = { "#bbbbbb", "#111111" },
+ [SchemeSel] = { "#eeeeee", "#aa0000" },
+ [SchemeOut] = { "#000000", "#aa0000" },
+};
+//static const unsigned int alpha = 0xf9;
+static const unsigned int alpha = 0xff;
+
+static const unsigned int alphas[SchemeLast][2] = {
+ [SchemeNorm] = { OPAQUE, alpha },
+ [SchemeSel] = { OPAQUE, alpha },
+ [SchemeOut] = { OPAQUE, alpha },
+};