diff options
Diffstat (limited to 'dmenu/themes/cicada.h')
-rw-r--r-- | dmenu/themes/cicada.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/dmenu/themes/cicada.h b/dmenu/themes/cicada.h new file mode 100644 index 0000000..caf4b09 --- /dev/null +++ b/dmenu/themes/cicada.h @@ -0,0 +1,14 @@ +static const char *colors[SchemeLast][2] = { + /* fg bg */ + [SchemeNorm] = { "#bbbbbb", "#000" }, + [SchemeSel] = { "#eeeeee", "#880" }, + [SchemeOut] = { "#000000", "#880" }, +}; +//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 }, +}; |