Psychological Monochrome for Neovim.
Engineered for flow. Drift into the Eclipse or wake up to Bliss. This is port of AetherAmethyst colorscheme
EclipseBliss
![]()
Most themes are random. AetherAmethyst is cognitive.
- Logic (Keywords) is Blue-Violet.
- Action (Functions) is Neon Pink.
- Structure (Operators/Delimiters) is Vivid Cyan.
- Data (Strings/Types) is Lavender & Rose.
{
"AetherSyscall/AetherAmethyst.nvim",
priority = 1000,
config = function()
require("aetheramethyst").setup({
transparent = false, -- Enable transparent background
styles = {
comments = { italic = true },
keywords = { italic = true },
functions = { bold = true },
variables = {},
}
})
-- Load the variant: 'eclipse' (dark) or 'bliss' (light)
vim.cmd("colorscheme aetheramethyst-eclipse")
end,
}use {
"AetherSyscall/AetherAmethyst.nvim",
config = function()
vim.cmd("colorscheme aetheramethyst-eclipse")
end
}The default configuration is robust, but you can override specific styles:
require("aetheramethyst").setup({
transparent = false, -- Disable background for transparent terminals
terminal_colors = true, -- Set vim.g.terminal_color_*
styles = {
comments = { italic = true },
keywords = { italic = true },
functions = { bold = true },
variables = {},
sidebars = "dark", -- style for sidebars (see below)
floats = "dark", -- style for floating windows
},
sidebars = { "qf", "help", "neo-tree" }, -- Set a darker background on sidebar-like windows
})AetherAmethyst ships with hand-tuned support for:
- Treesitter (Native & semantic)
- LSP Diagnostics
- Neo-tree
- Telescope
- Dashboard / Alpha
- GitSigns
- Lazy.nvim
- Mason
- Cmp
- WhichKey
Enjoy AetherAmethyst colorscheme beauty either you drift into the Eclipse or wake up to Bliss.

