diff options
author | niliara-edu <nil.jimeno@estudiant.fjaverianas.com> | 2024-08-16 12:30:33 +0200 |
---|---|---|
committer | niliara-edu <nil.jimeno@estudiant.fjaverianas.com> | 2024-08-16 12:30:33 +0200 |
commit | 23a62d70129db30027ba620fc798a666c198ba35 (patch) | |
tree | 51b59657991b10665936e33bb7fcee3873f371ef /dmenu/themes/rurbania.h | |
parent | 37d4a19152bbb2a83f4c0ce7172388240252d8f1 (diff) |
update
Diffstat (limited to 'dmenu/themes/rurbania.h')
-rw-r--r-- | dmenu/themes/rurbania.h | 14 |
1 files changed, 14 insertions, 0 deletions
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 }, +}; |