diff options
author | niliara-edu <nil.jimeno@estudiant.fjaverianas.com> | 2024-06-12 23:16:27 +0200 |
---|---|---|
committer | niliara-edu <nil.jimeno@estudiant.fjaverianas.com> | 2024-06-12 23:16:27 +0200 |
commit | e5fdd2a9338e914a489f9598c9b4e841b38981c0 (patch) | |
tree | 22016ff5d12631b3b1c206ab57c38e8f98e314ff /dmenu/themes | |
parent | cd5198f084186dacb9f90bc2b52654f16f6feefb (diff) |
cicada update
Diffstat (limited to 'dmenu/themes')
-rw-r--r-- | dmenu/themes/cicada.h | 14 | ||||
-rw-r--r-- | dmenu/themes/veloren.def.h | 14 | ||||
-rw-r--r-- | dmenu/themes/veloren.h | 10 |
3 files changed, 33 insertions, 5 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 }, +}; diff --git a/dmenu/themes/veloren.def.h b/dmenu/themes/veloren.def.h new file mode 100644 index 0000000..30cb06f --- /dev/null +++ b/dmenu/themes/veloren.def.h @@ -0,0 +1,14 @@ +static const char *colors[SchemeLast][2] = { + /* fg bg */ + [SchemeNorm] = { "#bbbbbb", "#222222" }, + [SchemeSel] = { "#eeeeee", "#862" }, + [SchemeOut] = { "#000000", "#862" }, +}; +//static const unsigned int alpha = 0xf0; +static const unsigned int alpha = 0xf9; + +static const unsigned int alphas[SchemeLast][2] = { + [SchemeNorm] = { OPAQUE, alpha }, + [SchemeSel] = { OPAQUE, alpha }, + [SchemeOut] = { OPAQUE, alpha }, +}; diff --git a/dmenu/themes/veloren.h b/dmenu/themes/veloren.h index 30cb06f..99f0b0f 100644 --- a/dmenu/themes/veloren.h +++ b/dmenu/themes/veloren.h @@ -1,11 +1,11 @@ static const char *colors[SchemeLast][2] = { /* fg bg */ - [SchemeNorm] = { "#bbbbbb", "#222222" }, - [SchemeSel] = { "#eeeeee", "#862" }, - [SchemeOut] = { "#000000", "#862" }, + [SchemeNorm] = { "#bbbbbb", "#111100" }, + [SchemeSel] = { "#eeeeee", "#960" }, + [SchemeOut] = { "#000000", "#960" }, }; -//static const unsigned int alpha = 0xf0; -static const unsigned int alpha = 0xf9; +//static const unsigned int alpha = 0xf9; +static const unsigned int alpha = 0xff; static const unsigned int alphas[SchemeLast][2] = { [SchemeNorm] = { OPAQUE, alpha }, |