A Neovim port of the Osaka Jade theme by Justin Lowry, originally created for Omarchy.
- Dark theme with jade/teal accent colors
- Full Treesitter support
- LSP semantic highlighting
- Support for popular plugins:
- Telescope
- Neo-tree
- WhichKey
- nvim-cmp
- Lazy.nvim
- Mason
- Noice
- Notify
- Flash
- Trouble
- Navic
- And more...
- Neovim >= 0.8.0
termguicolorsenabled
{
"st-eez/osaka-jade.nvim",
lazy = false,
priority = 1000,
config = function()
vim.cmd.colorscheme("osaka-jade")
end,
}return {
{ "st-eez/osaka-jade.nvim", lazy = false, priority = 1000 },
{
"LazyVim/LazyVim",
opts = {
colorscheme = "osaka-jade",
},
},
}use {
"st-eez/osaka-jade.nvim",
config = function()
vim.cmd.colorscheme("osaka-jade")
end,
}| Color | Hex | Usage |
|---|---|---|
| Background | #111c18 |
Primary background |
| Foreground | #C1C497 |
Primary text |
| Cyan | #2DD5B7 |
Keywords, accents |
| Green | #549e6a |
Strings |
| Blue | #509475 |
Functions |
| Yellow | #E5C736 |
Types, warnings |
| Red | #FF5345 |
Errors, exceptions |
| Magenta | #D2689C |
Numbers, booleans |
| Comment | #53685B |
Comments, muted text |
Color palette by Justin Lowry from his Osaka Jade theme for Omarchy.
MIT