Home

Awesome

Mellow

A soothing dark color scheme for neovim.

Preview

Terminal (kitty)

Screenshot of mellow theme terminal

JavaScript (JSX)

Screenshot of mellow theme JS/JSX

HTML

Screenshot of mellow theme HTML

Clojure

Screenshot of mellow theme Clojure

Rust

Screenshot of mellow theme Rust

Palette

Background and foreground Grays Normal colors Bright colors

Features

Plugin Support

Requirements

Installation

Install the theme with your preferred package manager:

vim-plug

Plug 'mellow-theme/mellow.nvim'

packer

use("mellow-theme/mellow.nvim")

Usage

-- Lua
vim.cmd([[colorscheme mellow]])
" Vim Script
colorscheme mellow

Configuration

Configuration needs to be set BEFORE loading the color scheme with colorscheme mellow

OptionDefaultDescription
mellow_italic_commentstrueMake comments italic
mellow_italic_keywordsfalseMake keywords italic
mellow_italic_booleansfalseMake booleans italic
mellow_italic_functionsfalseMake functions italic
mellow_italic_variablesfalseMake variables italic
mellow_bold_commentsfalseMake comments bold
mellow_bold_keywordsfalseMake keywords bold
mellow_bold_booleansfalseMake booleans bold
mellow_bold_functionsfalseMake functions bold
mellow_bold_variablesfalseMake variables bold
mellow_transparentfalseDisable background color
-- Example config in lua

-- Configure the appearance
vim.g.mellow_italic_functions = true
vim.g.mellow_bold_functions = true

-- Load the colorscheme
vim.cmd([[colorscheme mellow]])
" Example config in vim script

" Configure the appearance
let g:mellow_italic_functions = 1
let g:mellow_bold_functions = 1

" Load the colorscheme
colorscheme mellow

Extras

Color themes for various applications and terminal emulators.

Terminals

Helix

Visual Studio Code

Eclipse

Delta

Credits