diff options
author | niliara-edu <nil.jimeno@estudiant.fjaverianas.com> | 2024-05-26 10:04:45 +0200 |
---|---|---|
committer | niliara-edu <nil.jimeno@estudiant.fjaverianas.com> | 2024-05-26 10:04:45 +0200 |
commit | cd5198f084186dacb9f90bc2b52654f16f6feefb (patch) | |
tree | c76c9942f52a9e8b2a2d012bcccf99198b9f189a /dmenu/themes/sunshine.h | |
parent | 15663cf4d0666670ff1dffcac9d56aef87752c3f (diff) |
change settings
Diffstat (limited to 'dmenu/themes/sunshine.h')
-rw-r--r-- | dmenu/themes/sunshine.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/dmenu/themes/sunshine.h b/dmenu/themes/sunshine.h new file mode 100644 index 0000000..fcf01a8 --- /dev/null +++ b/dmenu/themes/sunshine.h @@ -0,0 +1,14 @@ +static const char *colors[SchemeLast][2] = { + /* fg bg */ + [SchemeNorm] = { "#dad", "#111" }, + [SchemeSel] = { "#dad", "#94d" }, + [SchemeOut] = { "#dad", "#94d" }, +}; + +static const unsigned int alpha = 0xf0; + +static const unsigned int alphas[SchemeLast][2] = { + [SchemeNorm] = { OPAQUE, alpha }, + [SchemeSel] = { OPAQUE, alpha }, + [SchemeOut] = { OPAQUE, alpha }, +}; |