tanvirtin / monokai.nvim

Monokai theme for Neovim written in Lua.
MIT License
351 stars 63 forks source link

[Question] Which one in the palette is used for change the background color? #40

Open LintaoAmons opened 1 year ago

LintaoAmons commented 1 year ago

Which one in the palette is used for change the background color?

Do we have a dimmed color for the windows which are not active?

cmpadden commented 2 days ago

@LintaoAmons it looks to be base2. I've confirmed that this works on my end:

    {
        "tanvirtin/monokai.nvim",
        lazy = false,
        init = function()
            local palette = require("monokai").ristretto
            palette.base2 = '#000000'
            require("monokai").setup({ palette = palette })
        end,
        enabled = true,
    },