From 3078f232581d1dcd548810370c193c6d235d2e82 Mon Sep 17 00:00:00 2001 From: Thomas Hebb Date: Sat, 4 Apr 2020 17:11:43 -0400 Subject: config: fix unfocused text color This color, both in i3 and as described in sway(5), defaults to #888888. However, the actual default also has an alpha of 88 instead of FF, meaning it ends up significantly darker than intended. --- sway/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sway/config.c') diff --git a/sway/config.c b/sway/config.c index b94887a7..fe811d27 100644 --- a/sway/config.c +++ b/sway/config.c @@ -309,7 +309,7 @@ static void config_defaults(struct sway_config *config) { color_to_rgba(config->border_colors.unfocused.border, 0x333333FF); color_to_rgba(config->border_colors.unfocused.background, 0x222222FF); - color_to_rgba(config->border_colors.unfocused.text, 0x88888888); + color_to_rgba(config->border_colors.unfocused.text, 0x888888FF); color_to_rgba(config->border_colors.unfocused.indicator, 0x292D2EFF); color_to_rgba(config->border_colors.unfocused.child_border, 0x222222FF); -- cgit v1.2.3-54-g00ecf