|
@@ -2,16 +2,22 @@ local gl = require('galaxyline')
|
|
-- get my theme in galaxyline repo
|
|
-- get my theme in galaxyline repo
|
|
-- local colors = require('galaxyline.theme').default
|
|
-- local colors = require('galaxyline.theme').default
|
|
local colors = {
|
|
local colors = {
|
|
- bg = '#282c34',
|
|
|
|
- yellow = '#fabd2f',
|
|
|
|
- cyan = '#008080',
|
|
|
|
|
|
+ bg = '#2E2E2E',
|
|
|
|
+ yellow = '#DCDCAA',
|
|
|
|
+ dark_yellow = '#D7BA7D',
|
|
|
|
+ cyan = '#4EC9B0',
|
|
green = '#608B4E',
|
|
green = '#608B4E',
|
|
|
|
+ light_green = '#B5CEA8',
|
|
|
|
+ string_orange = '#CE9178',
|
|
orange = '#FF8800',
|
|
orange = '#FF8800',
|
|
purple = '#C586C0',
|
|
purple = '#C586C0',
|
|
- magenta = '#d16d9e',
|
|
|
|
- grey = '#abb2bf',
|
|
|
|
|
|
+ magenta = '#D16D9E',
|
|
|
|
+ grey = '#858585',
|
|
blue = '#569CD6',
|
|
blue = '#569CD6',
|
|
- red = '#D16969'
|
|
|
|
|
|
+ vivid_blue = '#4FC1FF',
|
|
|
|
+ light_blue = '#9CDCFE',
|
|
|
|
+ red = '#D16969',
|
|
|
|
+ error_red = '#F44747'
|
|
}
|
|
}
|
|
local condition = require('galaxyline.condition')
|
|
local condition = require('galaxyline.condition')
|
|
local gls = gl.section
|
|
local gls = gl.section
|
|
@@ -85,7 +91,7 @@ gls.left[5] = {
|
|
provider = 'DiffModified',
|
|
provider = 'DiffModified',
|
|
condition = condition.hide_in_width,
|
|
condition = condition.hide_in_width,
|
|
icon = ' 柳',
|
|
icon = ' 柳',
|
|
- highlight = {colors.orange, colors.bg}
|
|
|
|
|
|
+ highlight = {colors.blue, colors.bg}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
gls.left[6] = {
|
|
gls.left[6] = {
|
|
@@ -101,14 +107,14 @@ gls.right[1] = {
|
|
DiagnosticError = {
|
|
DiagnosticError = {
|
|
provider = 'DiagnosticError',
|
|
provider = 'DiagnosticError',
|
|
icon = ' ',
|
|
icon = ' ',
|
|
- highlight = {colors.red, colors.bg}
|
|
|
|
|
|
+ highlight = {colors.error_red, colors.bg}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
gls.right[2] = {
|
|
gls.right[2] = {
|
|
DiagnosticWarn = {
|
|
DiagnosticWarn = {
|
|
provider = 'DiagnosticWarn',
|
|
provider = 'DiagnosticWarn',
|
|
icon = ' ',
|
|
icon = ' ',
|
|
- highlight = {colors.yellow, colors.bg}
|
|
|
|
|
|
+ highlight = {colors.orange, colors.bg}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|