diff options
Diffstat (limited to 'dmenu/themes')
-rwxr-xr-x | dmenu/themes/connect.h | 8 | ||||
-rw-r--r-- | dmenu/themes/default.h | 6 | ||||
-rw-r--r-- | dmenu/themes/sunshine.h | 14 | ||||
-rw-r--r-- | dmenu/themes/veloren.h | 14 |
4 files changed, 34 insertions, 8 deletions
diff --git a/dmenu/themes/connect.h b/dmenu/themes/connect.h index a19fc5d..9cb1e82 100755 --- a/dmenu/themes/connect.h +++ b/dmenu/themes/connect.h @@ -4,11 +4,3 @@ static const char *colors[SchemeLast][2] = { [SchemeSel] = { "#dcbdbd", "#B76779" }, [SchemeOut] = { "#dcbdbd", "#BA9687" }, }; - - -//static const char *colors[SchemeLast][2] = { -// /* fg bg */ -// [SchemeNorm] = { "#bbbbbb", "#222222" }, -// [SchemeSel] = { "#eeeeee", "#005577" }, -// [SchemeOut] = { "#000000", "#00ffff" }, -//}; diff --git a/dmenu/themes/default.h b/dmenu/themes/default.h new file mode 100644 index 0000000..34c12de --- /dev/null +++ b/dmenu/themes/default.h @@ -0,0 +1,6 @@ +static const char *colors[SchemeLast][2] = { + /* fg bg */ + [SchemeNorm] = { "#bbbbbb", "#222222" }, + [SchemeSel] = { "#eeeeee", "#005577" }, + [SchemeOut] = { "#000000", "#00ffff" }, +}; 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 }, +}; diff --git a/dmenu/themes/veloren.h b/dmenu/themes/veloren.h new file mode 100644 index 0000000..30cb06f --- /dev/null +++ b/dmenu/themes/veloren.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 }, +}; |