Skip to content

Commit 7c6865a

Browse files
authored
Merge pull request #21 from kmaasrud/master
Added monokai ristretto palette
2 parents 4478cb3 + e3e84f3 commit 7c6865a

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

colors/monokai_ristretto.vim

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lua require('monokai').setup { palette = require('monokai').ristretto }

lua/monokai.lua

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,36 @@ M.soda = {
8989
diff_text = '#23324d',
9090
}
9191

92+
93+
M.ristretto = {
94+
name = 'monokai_ristretto',
95+
base0 = '#191515',
96+
base1 = '#211c1c',
97+
base2 = '#2c2525',
98+
base3 = '#403838',
99+
base4 = '#5b5353',
100+
base5 = '#72696a',
101+
base6 = '#8c8384',
102+
base7 = '#c3b7b8',
103+
base8 = '#fff1f3',
104+
border = '#A1B5B1',
105+
brown = '#352e2e',
106+
white = '#fff1f3',
107+
grey = '#72696a',
108+
black = '#000000',
109+
pink = '#FF6188',
110+
green = '#adda78',
111+
aqua = '#85dacc',
112+
yellow = '#f9cc6c',
113+
orange = '#f38d70',
114+
purple = '#a8a9eb',
115+
red = '#fd6883',
116+
diff_add = '#adda78',
117+
diff_remove = '#fd6883',
118+
diff_change = '#85dacc',
119+
diff_text = '#23324d',
120+
}
121+
92122
M.highlight = function(group, color)
93123
local style = color.style and 'gui=' .. color.style or 'gui=NONE'
94124
local fg = color.fg and 'guifg = ' .. color.fg or 'guifg = NONE'

0 commit comments

Comments
 (0)