Style : Increase text contrast.

This commit is contained in:
Dmitry Voronin 2024-04-05 20:46:35 +03:00
parent 946ee8d07f
commit 04b82c311b
3 changed files with 3 additions and 3 deletions

View file

@ -14,7 +14,7 @@
accent = style.color.accent; accent = style.color.accent;
bg = style.color.bg_dark; bg = style.color.bg_dark;
fg = style.color.fg; fg = style.color.fg_light;
fontNamePopup = style.font.serif.name; fontNamePopup = style.font.serif.name;
fontSizePopup = style.font.size.popup; fontSizePopup = style.font.size.popup;

View file

@ -37,7 +37,7 @@ function __prompt_command() {
fi fi
# Add time. # Add time.
PS1+="$(__prompt_color ${fg_3_rgb})" PS1+="$(__prompt_color ${accent_rgb})"
PS1+="$(date +%H:%M) " PS1+="$(date +%H:%M) "
# Set root red. # Set root red.

View file

@ -10,6 +10,6 @@
[colors] [colors]
alpha=${toString(style.opacity.terminal)} alpha=${toString(style.opacity.terminal)}
background=${style.color.bg_dark} background=${style.color.bg_dark}
foreground=${style.color.fg} foreground=${style.color.fg_light}
''; '';
} }