mew

dmenu for wayland
git clone https://git.awy.one/mew
Log | Files | Refs | README | LICENSE

commit df40719ca86475cfc9c2383a2aaf350994076021
parent 65d16e6bbac055bd59c0d86b0ccaffcf4d0c6151
Author: awy <awy@awy.one>
Date:   Sat, 19 Jul 2025 18:55:34 +0300

theme

Diffstat:
Mconfig.def.h | 37++++++++++++++++++++++++++++++++++---
1 file changed, 34 insertions(+), 3 deletions(-)

diff --git a/config.def.h b/config.def.h @@ -2,13 +2,44 @@ /* Default settings; can be overriden by command line. */ static int top = 1; /* -b option; if 0, appear at bottom */ -static const char *fonts[] = { "monospace:size=10" }; /* -f option overrides fonts[0] */ +static const char *fonts[] = { "monospace:size=12" }; /* -f option overrides fonts[0] */ static const char *prompt = NULL; /* -p option; prompt to the left of input field */ -static uint32_t colors[][2] = { - /* fg bg */ + +/* fg bg */ +/* NORD */ +/* static uint32_t colors[][2] = { + [SchemeNorm] = { 0xd8dee9ff, 0x2e3440ff}, + [SchemeSel] = { 0xd8dee9ff, 0x5e81acff }, + [SchemeOut] = { 0x000000ff, 0x00ffffff }, +}; */ + +/* DEFAULT */ +/* static uint32_t colors[][2] = { [SchemeNorm] = { 0xbbbbbbff, 0x222222ff }, [SchemeSel] = { 0xeeeeeeff, 0x005577ff }, [SchemeOut] = { 0x000000ff, 0x00ffffff }, +}; */ + +/* EVERFOREST */ +/* static uint32_t colors[][2] = { + [SchemeNorm] = { 0xd3c6aaff, 0x272e33ff}, + [SchemeSel] = { 0x272e33ff, 0xd699b6ff }, + [SchemeOut] = { 0x000000ff, 0x00ffffff }, +}; */ + + +/* CATPPUCCIN */ +/* static uint32_t colors[][2] = { + [SchemeNorm] = { 0xcdd6f4ff, 0x1e1e2eff }, + [SchemeSel] = { 0x1e1e2eff, 0xf5c2e7ff }, + [SchemeOut] = { 0x000000ff, 0x00ffffff }, +}; */ + +/* GRUVBOX */ +static uint32_t colors[][2] = { + [SchemeNorm] = { 0xebdbb2ff, 0x282828ff}, + [SchemeSel] = { 0x282828ff, 0xfabd2fff }, + [SchemeOut] = { 0x000000ff, 0x00ffffff }, }; /* -m option; if provided, use that output instead of default output */