0
0
Fork 0
Neovim colorscheme based on the Tango color palette
Go to file
𝘋𝘪𝘳𝘬 55e40c7232
add termguicolors setting
during migration to lazy.nvim it was omitted in my local configuration
regarding the colorscheme because it is in `init.lua`. Just adding it
here to make it more universally usable – and because it’s in the legacy
Packer configuration snippet, too.
2023-09-15 22:09:30 +02:00
colors use a better way to parse bius 2023-05-18 21:38:57 +02:00
doc use manually scaled screenshots 2023-07-28 22:16:54 +02:00
lua map exceptions to conditionals 2023-05-04 22:26:04 +02:00
LICENSE.txt Initial commit 2023-02-22 19:45:28 +01:00
readme.md add termguicolors setting 2023-09-15 22:09:30 +02:00

readme.md

A colorscheme based on the Tango color palette that originates from the Tango Desktop Project.

The colorscheme has a slight bias on yellow-ish and green colors and supports dark backgrounds only. Please refer to the full color palette for more details on the used colors.

There are no background colors set, so the color of the terminal is used. Ideally the terminals background-color is set to #2e3435 and the foreground color (text color) is set to #d3d7cf.

Screenshots

Here are some screenshots to show how the colorscheme looks like.

.lua .sh .py .md

Languages/Sources in order:

  1. Lua code from Neovims runtime/lua/vim/diagnostic.lua file
  2. Bash script from the bash-completion package
  3. Python program from the glib library
  4. Markdown source in a specific state of this readme

The status line seen in the screenshots is lualine.nvim with my configuration.

Installation

You can simply install the colorscheme using a package manager.

-- lazy.nvim
require('lazy').setup({
    -- [more plugins here]
    {
        url = 'https://git.0x7be.net/dirk/neovim-tango-colors',
        lazy = false,
        priority = 1000,
        config = function ()
            vim.opt.termguicolors = true
            vim.cmd.colorscheme('tango-colors')
        end
    }
})

-- Packer
require('packer').startup(function(use)
  -- [more plugins here]
    use({
        'https://git.0x7be.net/dirk/neovim-tango-colors',
        config = function()
            vim.opt.termguicolors = true
            vim.cmd.colorscheme('tango-colors')
        end
    })
end)

This installs/loads the colorscheme plugin and enables it using one of those package managers.

Supported plugins and features

Elements that are currently not styled but are common highlights will look very ugly on purpose. If you see one of them (and you will clearly notice them), please share a code snippet showing them. Interested users and developers: please refer to the definitions format documentation.