diff options
author | Joshua Yun <joshua@joshuayun.com> | 2025-04-01 00:40:10 -0500 |
---|---|---|
committer | Joshua Yun <joshua@joshuayun.com> | 2025-04-01 00:40:10 -0500 |
commit | e9990b19c9f06d10125e581e987b124acea1b2ff (patch) | |
tree | 13b1a97dfcc767394cd60ce693c0397e7abbed8a | |
parent | fc69aa6e2bccca461a0bd0c10b448b64ccda1d42 (diff) | |
download | wmenu-joshua.tar.gz |
feat: changed font and colorsjoshua
-rw-r--r-- | menu.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -26,13 +26,13 @@ struct menu *menu_create(menu_callback callback) { struct menu *menu = calloc(1, sizeof(struct menu)); menu->strncmp = strncmp; - menu->font = "monospace 10"; + menu->font = "HackNerdFont 16"; menu->normalbg = 0x222222ff; menu->normalfg = 0xbbbbbbff; menu->promptbg = 0x005577ff; menu->promptfg = 0xeeeeeeff; - menu->selectionbg = 0x005577ff; - menu->selectionfg = 0xeeeeeeff; + menu->selectionbg = 0x396847ff; + menu->selectionfg = 0xbbbbbbff; menu->callback = callback; menu->test_surface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, 1, 1); menu->test_cairo = cairo_create(menu->test_surface); |