From fe49f1ff7c636d72a5f8950ce2ca1f7e66c027e9 Mon Sep 17 00:00:00 2001 From: speedie Date: Fri, 14 Jul 2023 01:41:09 +0200 Subject: [PATCH] Change default alpha value to 222 --- docs/spmenu.conf | 34 +++++++++++++++++----------------- libs/options.h | 34 +++++++++++++++++----------------- 2 files changed, 34 insertions(+), 34 deletions(-) diff --git a/docs/spmenu.conf b/docs/spmenu.conf index dd3e4f5..8681db4 100644 --- a/docs/spmenu.conf +++ b/docs/spmenu.conf @@ -106,39 +106,39 @@ spmenu = { /* Alpha */ alpha = ( { itemnormfg = 255; // Normal item foreground alpha (0-255) - itemnormbg = 200; // Normal item background alpha (0-255) + itemnormbg = 222; // Normal item background alpha (0-255) itemnormfg2 = 255; // Normal next item foreground alpha (0-255) - itemnormbg2 = 200; // Normal next item background alpha (0-255) + itemnormbg2 = 222; // Normal next item background alpha (0-255) itemselfg = 255; // Selected item foreground alpha (0-255) - itemselbg = 200; // Selected item background alpha (0-255) + itemselbg = 222; // Selected item background alpha (0-255) itemmarkedfg = 255; // Marked item foreground alpha (0-255) - itemmarkedbg = 200; // Marked item background alpha (0-255) + itemmarkedbg = 222; // Marked item background alpha (0-255) itemnormprifg = 255; // Normal priority item foreground alpha (0-255) - itemnormpribg = 200; // Normal priority item background alpha (0-255) + itemnormpribg = 222; // Normal priority item background alpha (0-255) itemselprifg = 255; // Selected priority item foreground alpha (0-255) - itemselpribg = 200; // Selected priority item background alpha (0-255) + itemselpribg = 222; // Selected priority item background alpha (0-255) inputfg = 255; // Input foreground alpha (0-255) - inputbg = 200; // Input background alpha (0-255) - menu = 200; // Menu alpha (0-255) + inputbg = 222; // Input background alpha (0-255) + menu = 222; // Menu alpha (0-255) promptfg = 255; // Prompt foreground alpha (0-255) - promptbg = 200; // Prompt background alpha (0-255) + promptbg = 222; // Prompt background alpha (0-255) larrowfg = 255; // Left arrow foreground alpha (0-255) - larrowbg = 200; // Left arrow background alpha (0-255) + larrowbg = 222; // Left arrow background alpha (0-255) rarrowfg = 255; // Right arrow foreground alpha (0-255) - rarrowbg = 200; // Right arrow background alpha (0-255) + rarrowbg = 222; // Right arrow background alpha (0-255) hlnormfg = 255; // Normal highlight foreground alpha (0-255) - hlnormbg = 200; // Normal highlight background alpha (0-255) + hlnormbg = 222; // Normal highlight background alpha (0-255) hlselfg = 255; // Selected highlight foreground alpha (0-255) - hlselbg = 200; // Selected highlight background alpha (0-255) + hlselbg = 222; // Selected highlight background alpha (0-255) numfg = 255; // Match count foreground alpha (0-255) - numbg = 200; // Match count background alpha (0-255) + numbg = 222; // Match count background alpha (0-255) border = 255; // Border alpha (0-255) caretfg = 255; // Caret (cursor) foreground alpha (0-255) - caretbg = 200; // Caret (cursor) background alpha (0-255) + caretbg = 222; // Caret (cursor) background alpha (0-255) modefg = 255; // Mode indicator foreground alpha (0-255) - modebg = 200; // Mode indicator background alpha (0-255) + modebg = 222; // Mode indicator background alpha (0-255) capsfg = 255; // Caps Lock indicator foreground alpha (0-255) - capsbg = 200; // Caps Lock indicator background alpha (0-255) + capsbg = 222; // Caps Lock indicator background alpha (0-255) } ); /* Powerline options */ diff --git a/libs/options.h b/libs/options.h index 8863dbb..a04c2c2 100644 --- a/libs/options.h +++ b/libs/options.h @@ -211,39 +211,39 @@ static char col_sgr15[] = "#fefbec"; /* SGR color #15 */ /* Alpha options */ static int alpha_itemnormfg = 255; /* Alpha for normal item foreground (0-255) */ -static int alpha_itemnormbg = 200; /* Alpha for normal item background (0-255) */ +static int alpha_itemnormbg = 222; /* Alpha for normal item background (0-255) */ static int alpha_itemnormfg2 = 255; /* Alpha for next normal item foreground (0-255) */ -static int alpha_itemnormbg2 = 200; /* Alpha for next normal item background (0-255) */ +static int alpha_itemnormbg2 = 222; /* Alpha for next normal item background (0-255) */ static int alpha_itemselfg = 255; /* Alpha for selected item foreground (0-255) */ -static int alpha_itemselbg = 200; /* Alpha for selected item background (0-255) */ +static int alpha_itemselbg = 222; /* Alpha for selected item background (0-255) */ static int alpha_itemmarkedfg = 255; /* Alpha for marked item foreground (0-255) */ -static int alpha_itemmarkedbg = 200; /* Alpha for marked item background (0-255) */ +static int alpha_itemmarkedbg = 222; /* Alpha for marked item background (0-255) */ static int alpha_itemnormprifg = 255; /* alpha for normal priority item foreground (0-255) */ -static int alpha_itemnormpribg = 200; /* Alpha for normal priority item background (0-255) */ +static int alpha_itemnormpribg = 222; /* Alpha for normal priority item background (0-255) */ static int alpha_itemselprifg = 255; /* Alpha for selected priority item foreground (0-255) */ -static int alpha_itemselpribg = 200; /* Alpha for selected priority item background (0-255) */ +static int alpha_itemselpribg = 222; /* Alpha for selected priority item background (0-255) */ static int alpha_inputfg = 255; /* Alpha for input foreground (0-255) */ -static int alpha_inputbg = 200; /* Alpha for input background (0-255) */ -static int alpha_menu = 200; /* Alpha for menu background (0-255) */ +static int alpha_inputbg = 222; /* Alpha for input background (0-255) */ +static int alpha_menu = 222; /* Alpha for menu background (0-255) */ static int alpha_promptfg = 255; /* Alpha for prompt foreground (0-255) */ -static int alpha_promptbg = 200; /* Alpha for prompt background (0-255) */ +static int alpha_promptbg = 222; /* Alpha for prompt background (0-255) */ static int alpha_larrowfg = 255; /* Alpha for left arrow foreground (0-255) */ -static int alpha_larrowbg = 200; /* Alpha for left arrow background (0-255) */ +static int alpha_larrowbg = 222; /* Alpha for left arrow background (0-255) */ static int alpha_rarrowfg = 255; /* Alpha for right arrow foreground (0-255) */ -static int alpha_rarrowbg = 200; /* Alpha for right arrow background (0-255) */ +static int alpha_rarrowbg = 222; /* Alpha for right arrow background (0-255) */ static int alpha_hlnormfg = 255; /* Alpha for normal highlight foreground (0-255) */ -static int alpha_hlnormbg = 200; /* Alpha for normal highlight background (0-255) */ +static int alpha_hlnormbg = 222; /* Alpha for normal highlight background (0-255) */ static int alpha_hlselfg = 255; /* Alpha for selected highlight foreground (0-255) */ -static int alpha_hlselbg = 200; /* Alpha for selected highlight background (0-255) */ +static int alpha_hlselbg = 222; /* Alpha for selected highlight background (0-255) */ static int alpha_numfg = 255; /* Alpha for match count foreground (0-255) */ -static int alpha_numbg = 200; /* Alpha for the match count background (0-255) */ +static int alpha_numbg = 222; /* Alpha for the match count background (0-255) */ static int alpha_border = 255; /* Alpha for the border (0-255) */ static int alpha_caretfg = 255; /* Alpha for the caret foreground (0-255) */ -static int alpha_caretbg = 200; /* Alpha for the caret background (0-255) */ +static int alpha_caretbg = 222; /* Alpha for the caret background (0-255) */ static int alpha_modefg = 255; /* Alpha for the mode indicator foreground (0-255) */ -static int alpha_modebg = 200; /* Alpha for the mode indicator background (0-255) */ +static int alpha_modebg = 222; /* Alpha for the mode indicator background (0-255) */ static int alpha_capsfg = 255; /* Alpha for the caps lock indicator foreground (0-255) */ -static int alpha_capsbg = 200; /* Alpha for the caps lock indicator background (0-255) */ +static int alpha_capsbg = 222; /* Alpha for the caps lock indicator background (0-255) */ /* Pango options */ static int pango_item = 1; /* Enable support for pango markup for the items */