craftzdog / solarized-osaka.nvim

🏯 A clean, dark Neovim theme written in Lua, with support for lsp, treesitter and lots of plugins.
Apache License 2.0
650 stars 29 forks source link

How to change theme transparency #16

Closed Abrillant-Lee closed 6 months ago

Abrillant-Lee commented 7 months ago

When using this theme, you may occasionally encounter situations where the background is white and the content cannot be seen clearly.image

DoffuXx commented 6 months ago

To Replace Transparency change transparent option

require("solarized-osaka").setup({
  transparent = false,

here's how i do it in lazy vim

{
    "craftzdog/solarized-osaka.nvim",
    lazy = false,
    priority = 1000,
    opts = function()
      return {
        transparent = false,
      }
    end,
  },