aboutsummaryrefslogtreecommitdiffstats
path: root/sway/config.c
diff options
context:
space:
mode:
authorLibravatar Thomas Hebb <tommyhebb@gmail.com>2020-04-04 17:11:43 -0400
committerLibravatar Simon Ser <contact@emersion.fr>2020-04-04 23:25:04 +0200
commit3078f232581d1dcd548810370c193c6d235d2e82 (patch)
treefea4955c92cba68178780862ef55fc82ca31482c /sway/config.c
parentbuild: make completions respect install prefixes (diff)
downloadsway-3078f232581d1dcd548810370c193c6d235d2e82.tar.gz
sway-3078f232581d1dcd548810370c193c6d235d2e82.tar.zst
sway-3078f232581d1dcd548810370c193c6d235d2e82.zip
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.
Diffstat (limited to 'sway/config.c')
-rw-r--r--sway/config.c2
1 files changed, 1 insertions, 1 deletions
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) {
309 309
310 color_to_rgba(config->border_colors.unfocused.border, 0x333333FF); 310 color_to_rgba(config->border_colors.unfocused.border, 0x333333FF);
311 color_to_rgba(config->border_colors.unfocused.background, 0x222222FF); 311 color_to_rgba(config->border_colors.unfocused.background, 0x222222FF);
312 color_to_rgba(config->border_colors.unfocused.text, 0x88888888); 312 color_to_rgba(config->border_colors.unfocused.text, 0x888888FF);
313 color_to_rgba(config->border_colors.unfocused.indicator, 0x292D2EFF); 313 color_to_rgba(config->border_colors.unfocused.indicator, 0x292D2EFF);
314 color_to_rgba(config->border_colors.unfocused.child_border, 0x222222FF); 314 color_to_rgba(config->border_colors.unfocused.child_border, 0x222222FF);
315 315