An open API service indexing awesome lists of open source software.

https://github.com/repl6669/repl69.nvim

Monochrome neovim colorscheme with decent accents.
https://github.com/repl6669/repl69.nvim

colorschemes editor neovim-colorscheme neovim-theme nvim nvim-theme

Last synced: about 2 months ago
JSON representation

Monochrome neovim colorscheme with decent accents.

Awesome Lists containing this project

README

        

# repl69

Monochrome colorscheme with decent accents for neovim.

## Getting started

### [lazy.nvim](https://lazy.folke.io/installation)

```lua
-- lua/plugins/colorscheme.lua
return {
{
"repl6669/repl69",
name = "repl69",
lazy = false,
priority = 1000,
},

{
"LazyVim/LazyVim",
opts = {
colorscheme = "repl69",
},
}
}
```

## Screenshots

![repl69 colorscheme preview 01](images/repl69_01.png)
![repl69 colorscheme preview 02](images/repl69_02.png)
![repl69 colorscheme preview 03](images/repl69_03.png)
![repl69 colorscheme preview 04](images/repl69_04.png)

## Options

```lua
require("repl69").setup({
enable = {
-- Set terminal colors
terminal = true,
},

-- Enabled styles
styles = {
bold = true,
italic = true,
transparency = true,
},

-- Custom highlight groups
highlight_groups = {},
})

vim.cmd("colorscheme repl69")
```

## Credits

- Heavily based on [rose-pine](https://github.com/rose-pine/neovim) neovim theme.
- Inspired by [presto.vim](https://github.com/ewilazarus/preto/blob/master/colors/preto.vim).