Refactoring
This commit is contained in:
@@ -1,18 +1,29 @@
|
||||
local M = {}
|
||||
|
||||
M.colors = {
|
||||
A = {
|
||||
return {
|
||||
mode = {
|
||||
inactive = {ctermfg='170',guifg='#C678DD'},
|
||||
normal = {ctermfg='170',guifg='#C678DD'},
|
||||
insert = {ctermfg='170',guifg='#C678DD'},
|
||||
replace = {ctermfg='170',guifg='#C678DD'},
|
||||
visual = {ctermfg='170',guifg='#C678DD'},
|
||||
},
|
||||
low = {
|
||||
active = {ctermfg='170',guifg='#C678DD'},
|
||||
inactive = {ctermfg='172',guifg='#C6080D'},
|
||||
}
|
||||
},
|
||||
med = {
|
||||
active = {ctermfg='170',guifg='#C678DD'},
|
||||
inactive = {ctermfg='172',guifg='#C6080D'},
|
||||
},
|
||||
high = {
|
||||
active = {ctermfg='170',guifg='#C678DD'},
|
||||
inactive = {ctermfg='172',guifg='#C6080D'},
|
||||
},
|
||||
error = {
|
||||
active = {ctermfg='170',guifg='#C678DD'},
|
||||
inactive = {ctermfg='172',guifg='#C6080D'},
|
||||
},
|
||||
warning = {
|
||||
active = {ctermfg='170',guifg='#C678DD'},
|
||||
inactive = {ctermfg='172',guifg='#C6080D'},
|
||||
},
|
||||
}
|
||||
|
||||
M.mode_colors = {
|
||||
inactive = {ctermfg='170',guifg='#C678DD'},
|
||||
normal = {ctermfg='170',guifg='#C678DD'},
|
||||
insert = {ctermfg='170',guifg='#C678DD'},
|
||||
replace = {ctermfg='170',guifg='#C678DD'},
|
||||
visual = {ctermfg='170',guifg='#C678DD'},
|
||||
}
|
||||
|
||||
return M
|
||||
|
||||
Reference in New Issue
Block a user