IMP: added orange and gray colors and integrated them
This commit is contained in:
parent
fe9a60f668
commit
2446279869
|
|
@ -17,10 +17,12 @@ local bright_blue = theme.bright_blue
|
||||||
local bright_magenta = theme.bright_magenta
|
local bright_magenta = theme.bright_magenta
|
||||||
local bright_cyan = theme.bright_cyan
|
local bright_cyan = theme.bright_cyan
|
||||||
local bright_white = theme.bright_white
|
local bright_white = theme.bright_white
|
||||||
|
local orange = theme.orange
|
||||||
|
local gray = theme.gray
|
||||||
|
|
||||||
return {
|
return {
|
||||||
Boolean = {
|
Boolean = {
|
||||||
fg = yellow,
|
fg = orange,
|
||||||
},
|
},
|
||||||
|
|
||||||
Character = {
|
Character = {
|
||||||
|
|
@ -41,7 +43,7 @@ return {
|
||||||
},
|
},
|
||||||
|
|
||||||
Delimiter = {
|
Delimiter = {
|
||||||
fg = yellow,
|
fg = orange,
|
||||||
},
|
},
|
||||||
|
|
||||||
Float = {
|
Float = {
|
||||||
|
|
@ -74,7 +76,7 @@ return {
|
||||||
},
|
},
|
||||||
|
|
||||||
Operator = {
|
Operator = {
|
||||||
fg = bright_black,
|
fg = gray,
|
||||||
sp = "none",
|
sp = "none",
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -91,7 +93,7 @@ return {
|
||||||
},
|
},
|
||||||
|
|
||||||
SpecialChar = {
|
SpecialChar = {
|
||||||
fg = magenta,
|
fg = orange,
|
||||||
},
|
},
|
||||||
|
|
||||||
Statement = {
|
Statement = {
|
||||||
|
|
|
||||||
|
|
@ -16,10 +16,12 @@ local bright_blue = theme.bright_blue -- base0C
|
||||||
local bright_magenta = theme.bright_magenta -- base0D
|
local bright_magenta = theme.bright_magenta -- base0D
|
||||||
local bright_cyan = theme.bright_cyan -- base0E
|
local bright_cyan = theme.bright_cyan -- base0E
|
||||||
local bright_white = theme.bright_white -- base0F
|
local bright_white = theme.bright_white -- base0F
|
||||||
|
local orange = theme.orange
|
||||||
|
local gray = theme.gray
|
||||||
|
|
||||||
return {
|
return {
|
||||||
TSAnnotation = {
|
TSAnnotation = {
|
||||||
fg = bright_magenta,
|
fg = orange,
|
||||||
sp = "none",
|
sp = "none",
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -84,7 +86,7 @@ return {
|
||||||
},
|
},
|
||||||
|
|
||||||
TSNone = {
|
TSNone = {
|
||||||
fg = bright_black,
|
fg = gray,
|
||||||
sp = "none",
|
sp = "none",
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -94,17 +96,17 @@ return {
|
||||||
},
|
},
|
||||||
|
|
||||||
TSParameterReference = {
|
TSParameterReference = {
|
||||||
fg = yellow,
|
fg = gray,
|
||||||
sp = "none",
|
sp = "none",
|
||||||
},
|
},
|
||||||
|
|
||||||
TSPunctDelimiter = {
|
TSPunctDelimiter = {
|
||||||
fg = yellow,
|
fg = orange,
|
||||||
sp = "none",
|
sp = "none",
|
||||||
},
|
},
|
||||||
|
|
||||||
TSPunctSpecial = {
|
TSPunctSpecial = {
|
||||||
fg = white,
|
fg = gray,
|
||||||
sp = "none",
|
sp = "none",
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -124,12 +126,12 @@ return {
|
||||||
},
|
},
|
||||||
|
|
||||||
TSTagDelimiter = {
|
TSTagDelimiter = {
|
||||||
fg = bright_red,
|
fg = orange,
|
||||||
sp = "none",
|
sp = "none",
|
||||||
},
|
},
|
||||||
|
|
||||||
TSText = {
|
TSText = {
|
||||||
fg = white,
|
fg = gray,
|
||||||
sp = "none",
|
sp = "none",
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,8 @@ M.colors= {
|
||||||
bright_magenta = "#ff00ff", -- base0D
|
bright_magenta = "#ff00ff", -- base0D
|
||||||
bright_cyan = "#00ffff", -- base0E
|
bright_cyan = "#00ffff", -- base0E
|
||||||
bright_white = "#ffffff", -- base0F
|
bright_white = "#ffffff", -- base0F
|
||||||
|
orange = "#be5046",
|
||||||
|
gray = "#abb2bf",
|
||||||
}
|
}
|
||||||
|
|
||||||
-- M.colors= {
|
-- M.colors= {
|
||||||
|
|
|
||||||
Reference in New Issue