IMP: added orange and gray colors and integrated them

This commit is contained in:
krolyxon 2022-09-15 18:26:50 +05:30
parent fe9a60f668
commit 2446279869
3 changed files with 17 additions and 12 deletions

View File

@ -17,10 +17,12 @@ local bright_blue = theme.bright_blue
local bright_magenta = theme.bright_magenta
local bright_cyan = theme.bright_cyan
local bright_white = theme.bright_white
local orange = theme.orange
local gray = theme.gray
return {
Boolean = {
fg = yellow,
fg = orange,
},
Character = {
@ -41,7 +43,7 @@ return {
},
Delimiter = {
fg = yellow,
fg = orange,
},
Float = {
@ -74,7 +76,7 @@ return {
},
Operator = {
fg = bright_black,
fg = gray,
sp = "none",
},
@ -91,7 +93,7 @@ return {
},
SpecialChar = {
fg = magenta,
fg = orange,
},
Statement = {

View File

@ -16,10 +16,12 @@ local bright_blue = theme.bright_blue -- base0C
local bright_magenta = theme.bright_magenta -- base0D
local bright_cyan = theme.bright_cyan -- base0E
local bright_white = theme.bright_white -- base0F
local orange = theme.orange
local gray = theme.gray
return {
TSAnnotation = {
fg = bright_magenta,
fg = orange,
sp = "none",
},
@ -84,7 +86,7 @@ return {
},
TSNone = {
fg = bright_black,
fg = gray,
sp = "none",
},
@ -94,17 +96,17 @@ return {
},
TSParameterReference = {
fg = yellow,
fg = gray,
sp = "none",
},
TSPunctDelimiter = {
fg = yellow,
fg = orange,
sp = "none",
},
TSPunctSpecial = {
fg = white,
fg = gray,
sp = "none",
},
@ -124,12 +126,12 @@ return {
},
TSTagDelimiter = {
fg = bright_red,
fg = orange,
sp = "none",
},
TSText = {
fg = white,
fg = gray,
sp = "none",
},

View File

@ -18,7 +18,8 @@ M.colors= {
bright_magenta = "#ff00ff", -- base0D
bright_cyan = "#00ffff", -- base0E
bright_white = "#ffffff", -- base0F
orange = "#be5046",
gray = "#abb2bf",
}
-- M.colors= {