haishanh / night-owl.vim

A 24bit dark Vim colorscheme based on sdras/night-owl-vscode-theme
499 stars 40 forks source link

Not rendering the colors #10

Open itstechnexus opened 5 years ago

itstechnexus commented 5 years ago

screenshot from 2019-02-12 08-36-07 Unable to get the theme working!

haishanh commented 5 years ago

Thanks for reporting.

Are you using Hyper term? According to this gist Hyper does not support true color yet.

Do you mean the background color is not working properly?

travisboss commented 5 years ago

Unable to get the theme working!

This is probably due to not setting termguicolors if you use neovim you need to add

if (has("termguicolors"))
 set termguicolors
endif

to your init.vim

I think this might be the same for vim 8+ now also.

CristoAMH commented 4 years ago

I still have the problem that background is not working properly. I added what @travisboss commented but that did't work for me. It just happens in neovim. Any help?

tomrevansecho commented 4 years ago

I'm having same issue, can't get theme to display properly. Really like this theme :(

rossmacarthur commented 4 years ago

I have the same issue in iTerm2

travisboss commented 4 years ago

Can all of you post a screenshot showing the failure?

rossmacarthur commented 4 years ago

Perhaps I need to make changes to my iTerm2 settings?

The background seems particularly to be the problem here.

Untitled
travisboss commented 4 years ago

it should not matter i think but you have two items telling the system how to enable true color. what version of neovim or vim do you have?

Also from Neovim FAQ please check about true color here

autocmd ColorScheme * highlight Normal guibg=011627 Could try this also in your vimrc to see if that will override whatever is causing the issue.

EDIT: I just tried the theme, I am using Therm a saner version of iTerm2 on MacOS and here is a screenshot. I left the other parts as that is all I have in my colorscheme area (the commented out section is for my delicate eyes).

Screen Shot 2019-11-15 at 11 36 01 AM
brianmoran commented 4 years ago

this worked for me in my .tmux.conf file set -g default-terminal "tmux-256color"

YinanZhaoXometry commented 4 years ago

Perhaps I need to make changes to my iTerm2 settings?

The background seems particularly to be the problem here.

Untitled

i'm having the same issue, how you solved it?

rossmacarthur commented 4 years ago

I'm on macOS using iTerm2 and I had the same problem. See https://github.com/haishanh/night-owl.vim/issues/10#issuecomment-554396891

I managed to solve this by doing the following:

  1. Make sure you have xterm-256color, you might have to install ncurses (brew install ncurses)

    ❯ toe | grep xterm-256color
    xterm-256color  xterm with 256 colors
  2. I deleted ~/.terminfo, I for some reason had bad files in here, probably was fiddling with terminfo a long time ago.

  3. I created a new file xterm-256color.terminfo

xterm-256color|xterm-256color with italics support,
    sitm=\E[3m, ritm=\E[23m, dim=\E[2m,
    use=xterm-256color,
  1. I compiled this by running

    tic xterm-256color.terminfo

    You can verify that xterm-256color was updated by checking:

    ❯ toe | grep xterm-256color
    xterm-256color  xterm-256color with italics support
  2. Make sure you set the following setting in iTerm2. Preferences > Profiles > Default > Terminal > Terminal Emulation.

image

You can also export TERM=xterm-256color instead

After

image
aminnairi commented 3 years ago

I have set these options on my Konsole terminal on ArchLinux using Tmux & NeoVIM so that it can have the correct background.

tmux.conf

# Tmux true color support
set -ga terminal-overrides ",xterm-256color:Tc"
set -g default-terminal "tmux-256color"
brianmoran commented 3 years ago

I was able to get the background to render correctly by removing the # in guibg. Put the following after setting colorscheme.

hi Normal guifg=#d6deeb ctermfg=253 guibg=011627 ctermbg=233 gui=NONE cterm=NONE
hi SignColumn guifg=NONE ctermfg=NONE guibg=011627 ctermbg=233 gui=NONE cterm=NONE
hi LineNr guifg=#444444 ctermfg=238 guibg=011627 ctermbg=233 gui=NONE cterm=NONE
hi EndOfBuffer guifg=#444444 ctermfg=238 guibg=011627 ctermbg=233 gui=NONE cterm=NONE
dubst3pp4 commented 3 years ago

I have set these options on my Konsole terminal on ArchLinux using Tmux & NeoVIM so that it can have the correct background.

tmux.conf

# Tmux true color support
set -ga terminal-overrides ",xterm-256color:Tc"
set -g default-terminal "tmux-256color"

Unfortunately there is no kiss icon. This solved all my Vim + tmux color scheme problems. Thank you very much!

princejoogie commented 2 years ago

@haishanh I am getting the correct background but the html tags and react components dont seem to be the right color (even < & >)

Expected (in README)

image

Actual

image

theres this #FFA500 color which I also tried manually overriding but cant find this hex in the repo