-
-
Notifications
You must be signed in to change notification settings - Fork 144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The command bar is purple #15
Comments
Does your terminal support 24-bit True color and which urxvt for example is know to parsing ANSI color sequences, but approximating them to 256 palette. Please start tmux info | grep Tc If the output is You can run this inside awk 'BEGIN{
s="/\\/\\/\\/\\/\\"; s=s s s s s s s s;
for (colnum = 0; colnum<77; colnum++) {
r = 255-(colnum*255/76);
g = (colnum*510/76);
b = (colnum*255/76);
if (g>255) g = 510-g;
printf "\033[48;2;%d;%d;%dm", r,g,b;
printf "\033[38;2;%d;%d;%dm", 255-r,255-g,255-b;
printf "%s\033[0m", substr(s,colnum+1,1);
}
printf "\n";
}' If the line looks "stepwise" Otherwise the line should have smooth transitions: The If your terminal supports True color you should make sure to set the set -g default-terminal "xterm-256color"
set-option -ga terminal-overrides ",xterm-256color:Tc" This will reflect your actual Replace the If this doesn't fix the colors or causes other problems try to remove the |
Nice to see that it fixed your problem 😄 The weird output might be related to some implementation details regarding the escape codes ( Have you tried to logout from the current session and check again after login? The |
Yea, still weird. But my problem's fixed anyway :) thanks. Just the True color thingy |
Maybe there's another compatibility problem with |
The command bar is yellow. And I have smooth transitions printed out by the command line you provided. And 'tmux info | grep Tc' is set correctly. The only thing that I think that could possibly cause this problem is that I am using Alacritty which is not in the installation list before installing Nord tmux. Could you please help me with this? That would be really appreciated |
@pannnnn Can you please try to reproduce the problem with a clean Vim config that only contains the activation for the |
@pannnnn Any updates on this? Have you been able to reproduce the problem with a clean config? |
The tab bar has nord colorscheme, but the command bar has this purple color
This happened in rxvt-unicode, xfce terminal and xterm.
The text was updated successfully, but these errors were encountered: