-
-
Notifications
You must be signed in to change notification settings - Fork 107
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
How to change the search highlight color #77
Comments
require("github-theme").setup({
colors = {bg_search = "#dae84d", fg_search = "#000000"}
}) check README.md#configuration for other configuration. |
I tried this let g:github_colors = [bg_search = "#dae84d", error = "#000000"]
colorscheme github_dark_default But I got The same with the readme example " Change the "hint" color to the "orange" color, and make the "error" color bright red
let g:github_colors = [hint = "orange", error = "#ff0000"] This will error to |
There are some bugs in this theme regarding vim.g.github_colors = {bg_search = "#dae84d", fg_search = "#000000"}
vim.cmd [[ colorscheme github_dark_default]] |
Also, You have to wrap this 👆 config with lua << EOF
vim.g.github_colors = {bg_search = "#dae84d", fg_search = "#000000"}
vim.cmd [[ colorscheme github_dark_default]]
EOF |
Here is the let g:github_colors = {
\ 'error': '#dae84d',
\ 'fg_search': '#000000'
\ }
colorscheme github_dark_default |
Hello good day,
Previously I'm using base16-vim colortheme, and using the search highlight color of
#dae84d
.How I can change the search highlight color to
#dae84d
?Thanks
The text was updated successfully, but these errors were encountered: