mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-26 20:40:35 +08:00
22 lines
905 B
VimL
22 lines
905 B
VimL
"=============================================================================
|
|
" molokai.vim --- molokai theme for SpaceVim
|
|
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
|
" Author: Wang Shidong < wsdjeg at 163.com >
|
|
" URL: https://spacevim.org
|
|
" License: GPLv3
|
|
"=============================================================================
|
|
|
|
function! SpaceVim#mapping#guide#theme#molokai#palette() abort
|
|
return [
|
|
\ ['#080808', '#e6db74', 144, 232],
|
|
\ ['#f8f8f0', '#232526', 16, 253],
|
|
\ ['#f8f8f0', '#293739', 236, 253],
|
|
\ ['#465457', 67],
|
|
\ ['#282828', '#8787af', 235, 103],
|
|
\ ['#282828', '#ffd700', 235, 220],
|
|
\ ['#282828', '#ff5f5f', 235, 203],
|
|
\ ['#282828', '#689d6a', 235, 72],
|
|
\ ['#282828', '#8f3f71', 235, 132],
|
|
\ ]
|
|
endfunction
|