All Projects → ashfinal → vim-colors-violet

ashfinal / vim-colors-violet

Licence: other
Violet Colorscheme for the Vim Editor

Programming Languages

Vim Script
2826 projects

Projects that are alternatives of or similar to vim-colors-violet

cosme.vim
Cosmetic color scheme for Vim
Stars: ✭ 63 (+103.23%)
Mutual labels:  colorscheme
Turtles
🐢 A vim colorscheme based off the legendary teenage warriors
Stars: ✭ 43 (+38.71%)
Mutual labels:  colorscheme
one.kak
Atom "One" color schemes for Kakoune.
Stars: ✭ 19 (-38.71%)
Mutual labels:  colorscheme
neon
Customizable coloscheme with dark and light options, vivid colors and easy on the eye.
Stars: ✭ 100 (+222.58%)
Mutual labels:  colorscheme
kakoune-colors
Color schemes for kakoune
Stars: ✭ 15 (-51.61%)
Mutual labels:  colorscheme
parsec
A color scheme for people tired of solarized
Stars: ✭ 30 (-3.23%)
Mutual labels:  colorscheme
ImageColorizer
Make any wallpaper fit any terminal colorscheme.
Stars: ✭ 80 (+158.06%)
Mutual labels:  colorscheme
nord.nvim
Neovim theme based off of the Nord Color Palette, written in lua with tree sitter support
Stars: ✭ 412 (+1229.03%)
Mutual labels:  colorscheme
vim-transparent
Remove all background color on Vim
Stars: ✭ 65 (+109.68%)
Mutual labels:  colorscheme
material.nvim
🔱 Material colorscheme for NeoVim written in Lua with built-in support for native LSP, TreeSitter and many more plugins
Stars: ✭ 574 (+1751.61%)
Mutual labels:  colorscheme
github-light.vim
Github colorscheme for vim
Stars: ✭ 33 (+6.45%)
Mutual labels:  colorscheme
kitty-snazzy
Elegant kitty terminal theme with bright colors
Stars: ✭ 93 (+200%)
Mutual labels:  colorscheme
blossom.vim
a simple pinkish vim colorscheme designed for cursive italics
Stars: ✭ 18 (-41.94%)
Mutual labels:  colorscheme
nvim-highlite
A colorscheme template that is "lite" on logic for the developer.
Stars: ✭ 163 (+425.81%)
Mutual labels:  colorscheme
neotrix.vim
💚A nice dark colorscheme for Vim and Neovim.😃
Stars: ✭ 43 (+38.71%)
Mutual labels:  colorscheme
sourcerer.vim
vim colorscheme
Stars: ✭ 42 (+35.48%)
Mutual labels:  colorscheme
Theme-Engine
Theme-Engine is usually made for modification & customization, so you can make trunks even more Colourful and better your Termux.
Stars: ✭ 31 (+0%)
Mutual labels:  colorscheme
nord-slack
An arctic, north-bluish clean and elegant Slack theme.
Stars: ✭ 129 (+316.13%)
Mutual labels:  colorscheme
xresources-nvim
🎨 Neovim colorscheme based on your xresources color
Stars: ✭ 77 (+148.39%)
Mutual labels:  colorscheme
kumux-colorscheme-engine
Kumux is the world's first dynamic circadian color scheme for code editors and other software.
Stars: ✭ 102 (+229.03%)
Mutual labels:  colorscheme

Violet Colorscheme

Inspired by Solarized. An attempt to a better-looking Vim. Neat and clean.

palette

Features

  1. ☯️ Dark & Light

    preview

    Every colorscheme should have dark and light background modes.

  2. 🚢 Airline Theme

    airline

    While using violet colorscheme, the included airline theme should be loaded automatically.

  3. 🚥 Straightaway Switch

    :set background=dark/light This should do the trick.

    Tips: I recommended to throw those lines below into your .vimrc file, then use leader + b to quickly switch between dark & light colorschemes.

    nnoremap <silent> <Leader>b :call ToggleBackground()<CR>
    function! ToggleBackground()
        if &background == "light"
            set background=dark
        else
            set background=light
        endif
    endfunction
  4. 📺 256 Color Palette Mode

    Violet colorscheme was primarily created for 24bit truecolor editor (gvim/macvim), and I try my best to make it work in terminal emulators too.

    If you confirm that your terminal emulator supports 24bit truecolor (https://gist.github.com/XVilka/8346728), use set termguicolors to activate it.

    Attention: There is noticeable difference between 24bit truecolor mode and 256 color palette mode, due to the absence of approximate colors.

Installation

If you are using vim-plug:

Plug 'ashfinal/vim-colors-violet'

Then add this into your .vimrc file: colorscheme violet.

Welcome to

Share your thoughts. :) Any question, file an issue.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].