Skip to content

Commit

Permalink
config: fix unfocused text color
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
tchebb authored and emersion committed Apr 4, 2020
1 parent 4e82d0f commit 3078f23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sway/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 3078f23

Please sign in to comment.