Colors appear washed out and darker background #226
Replies: 12 comments
-
Hi @adelejjeh 👋, that's pretty little information 😉 In order to ensure the problem is related to the Nord theme you need to reproduce it with a minimal and clean configuration. This can be done by creating new configuration file with any name (e.g. Here's an minimal test configuration you can use to try to reproduce the problem (supposed you're using vim-plug): call plug#begin(expand('~/.vim/plugged'))
Plug 'arcticicestudio/nord-vim'
call plug#end()
set nocompatible
if (has("termguicolors"))
set termguicolors
endif
syntax enable
colorscheme nord As you can see in the example configuration the Unfortunately terminal colors are quite complex due to their long history, but modern terminal emulators should be all capable of rendering "True Colors". You should make sure to check out the great “Terminal Colors“ gist that provides many details about color rendering in terminal emulators, tracking of supported terminal emulator projects and answers to common confusions about terminal colors. The “Colours in terminal“ gist is also quite helpful to learn more about the actual rendering engines and standards used by these terminal emulators. → Could you please try to either use the example configuration or set the |
Beta Was this translation helpful? Give feedback.
-
I'm having a similar problem and I think I've isolated the issue to tmux. When I run NeoVim with the test configuration above outside of tmux (I'm using Alacritty v0.7.2), the colors are correct. When I start tmux and then open NeoVim with the same test config, the colors look similar to the ones in the original poster's screenshot. I'm on Ubuntu 18.04, so the version of tmux is 2.6, which is from 2017. I think I have this working on my other computer which is a much more recent release of Ubuntu (pretty sure it's 20.10), so I'll double-check that it's working tonight and report back with the version of tmux I have. Could be that you just need to update tmux. |
Beta Was this translation helpful? Give feedback.
-
I don't have the same problem with tmux 3.1b, so it's conceivable that this is a tmux bug that has been fixed in more recent versions. |
Beta Was this translation helpful? Give feedback.
-
Same!
|
Beta Was this translation helpful? Give feedback.
-
I'm having a similar issue, although I can't seem to figure out the cause. As far as my Vim config goes my color here are the color and color scheme settings I used
Note that without these lines, I have no color at all inside of tmux
I did try setting the tmux settings suggested by @chengleqi without any luck. I'm running Arch Linux, with tmux 3.3_a, and vim 8.2.5046 |
Beta Was this translation helpful? Give feedback.
-
I have this problem again now. lol. |
Beta Was this translation helpful? Give feedback.
-
It seems that using the following in $HOME/.tmux.conf mostly fixes it
I should also have added in my other comment my terminal emulator is Konsole if that helps. |
Beta Was this translation helpful? Give feedback.
-
it's weird. It worked on wezterm, but not on my alacritty. Maybe I should switch to Wezterm?😂 |
Beta Was this translation helpful? Give feedback.
-
You can fix it by setting the term property in Alacritty config to:
|
Beta Was this translation helpful? Give feedback.
-
It Worked! thanks so much. |
Beta Was this translation helpful? Give feedback.
-
Setting that in $HOME/.tmux.conf also seems to fix it using Konsole + Tmux. |
Beta Was this translation helpful? Give feedback.
-
Thank you for your patience! 🙏🏼 I recently published the first “Northern Post — The state and roadmap of Nord“ announcement which includes all details about the plans and future of the Nord project, including the goal of catching up with the backlog. This issue is part of the backlog and therefore I want to triage and process it to get one step closer to a “clean state“. Read the announcement about reaching the “clean“ contribution triage state in Nord‘s discussions for more details about the goal. Due to the scope of this issue of not being “purely technical“, or being related to the project‘s code at all, I‘ll convert it into a discussion for Nord‘s central community hub on GitHub. This way the repository is easier to maintain by separating conversations about the actual code while also making help requests, ideas and other contributions from users more visible and supportable by the community. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
All reactions