Skip to content
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

What theme is this? #88

Open
9mm opened this issue Aug 16, 2023 · 3 comments
Open

What theme is this? #88

9mm opened this issue Aug 16, 2023 · 3 comments

Comments

@9mm
Copy link

9mm commented Aug 16, 2023

It doesnt look like the normal rose-pine one? I like how it's more muted

image

@cruzluna
Copy link

use({
	  'rose-pine/neovim',
	  as = 'rose-pine',
	  config = function()
		  vim.cmd('colorscheme rose-pine')
	  end
  })

@Thinato
Copy link

Thinato commented Nov 3, 2023

in addition to @cruzluna answer, in after/plugin/colors.lua he modifies the background transparency:

require('rose-pine').setup({
    disable_background = true
})

function ColorMyPencils(color) 
	color = color or "rose-pine"
	vim.cmd.colorscheme(color)

	vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
	vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })

end

ColorMyPencils()

@asilvam133
Copy link

This is Tokyonight with transparent background. Right now he is using Rose Pine

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants