mirror of
https://github.com/itchyny/lightline.vim.git
synced 2025-11-08 11:33:53 -05:00
Merge branch 'add-rose-pine-moon'
This commit is contained in:
41
autoload/lightline/colorscheme/rosepine_moon.vim
Normal file
41
autoload/lightline/colorscheme/rosepine_moon.vim
Normal file
@@ -0,0 +1,41 @@
|
||||
" =============================================================================
|
||||
" Filename: autoload/lightline/colorscheme/rosepine_moon.vim
|
||||
" Author: lsculv (based on work by sheruost)
|
||||
" License: MIT License
|
||||
" Last Change: 2022/11/18 11:30:19.
|
||||
" =============================================================================
|
||||
|
||||
" Reference: https://rosepinetheme.com/palette
|
||||
" Rosé Pine Moon
|
||||
let s:base = [ '#232136', 233 ]
|
||||
let s:surface = [ '#2a273f', 234 ]
|
||||
|
||||
let s:overlay = [ '#393552', 235 ]
|
||||
let s:highlight_m = [ '#44415a', 59 ]
|
||||
let s:muted = [ '#6e6a86', 60 ]
|
||||
let s:subtle = [ '#908caa', 103 ]
|
||||
|
||||
let s:iris = [ '#c4a7e7', 182 ]
|
||||
let s:pine = [ '#3e8fb0', 30 ]
|
||||
let s:foam = [ '#9ccfd8', 152 ]
|
||||
let s:rose = [ '#ea9a97', 217 ]
|
||||
let s:love = [ '#eb6f92', 204 ]
|
||||
|
||||
let s:p = {'normal': {}, 'inactive': {}, 'insert': {}, 'replace': {}, 'visual': {}, 'tabline': {}}
|
||||
let s:p.normal.left = [ [ s:base, s:pine ], [ s:subtle, s:surface ] ]
|
||||
let s:p.normal.right = [ [ s:overlay, s:subtle ], [ s:muted, s:overlay ], [ s:highlight_m, s:surface ] ]
|
||||
let s:p.inactive.right = [ [ s:base, s:surface ], [ s:overlay, s:base ] ]
|
||||
let s:p.inactive.left = [ [ s:overlay, s:base ], [ s:surface, s:base ] ]
|
||||
let s:p.insert.left = [ [ s:base, s:foam ], [ s:subtle, s:surface ] ]
|
||||
let s:p.replace.left = [ [ s:base, s:love ], [ s:subtle, s:surface ] ]
|
||||
let s:p.visual.left = [ [ s:base, s:iris ], [ s:subtle, s:surface ] ]
|
||||
let s:p.normal.middle = [ [ s:overlay, s:base ] ]
|
||||
let s:p.inactive.middle = [ [ s:surface, s:base ] ]
|
||||
let s:p.tabline.left = [ [ s:subtle, s:base ] ]
|
||||
let s:p.tabline.tabsel = [ [ s:pine, s:base ] ]
|
||||
let s:p.tabline.middle = [ [ s:surface, s:base ] ]
|
||||
let s:p.tabline.right = copy(s:p.normal.right)
|
||||
let s:p.normal.error = [ [ s:love, s:base ] ]
|
||||
let s:p.normal.warning = [ [ s:rose, s:surface ] ]
|
||||
|
||||
let g:lightline#colorscheme#rosepine_moon#palette = lightline#colorscheme#flatten(s:p)
|
||||
@@ -128,6 +128,10 @@
|
||||
|
||||

|
||||
|
||||
### rosepine_moon
|
||||
|
||||

|
||||
|
||||
### srcery_drk
|
||||
|
||||

|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
Author: itchyny (https://github.com/itchyny)
|
||||
License: MIT License
|
||||
Repository: https://github.com/itchyny/lightline.vim
|
||||
Last Change: 2022/03/16 00:15:04.
|
||||
Last Change: 2023/11/21 08:10:00.
|
||||
|
||||
CONTENTS *lightline-contents*
|
||||
|
||||
@@ -233,7 +233,7 @@ OPTIONS *lightline-option*
|
||||
Tomorrow_Night_Bright, Tomorrow_Night_Eighties, PaperColor,
|
||||
landscape, one, materia, material, OldHope, nord, deus,
|
||||
simpleblack, srcery_drk, ayu_mirage, ayu_light, ayu_dark,
|
||||
apprentice, rosepine, and 16color are available.
|
||||
apprentice, rosepine, rosepine_moon, and 16color are available.
|
||||
The default value is:
|
||||
>
|
||||
let g:lightline.colorscheme = 'default'
|
||||
|
||||
Reference in New Issue
Block a user