diff options
Diffstat (limited to 'lua/prismite/groups/colors.lua')
-rw-r--r-- | lua/prismite/groups/colors.lua | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lua/prismite/groups/colors.lua b/lua/prismite/groups/colors.lua new file mode 100644 index 0000000..0502baf --- /dev/null +++ b/lua/prismite/groups/colors.lua @@ -0,0 +1,20 @@ +local colors = require "prismite.palette" + +return { + PrismiteRed = { fg = colors.red }, + PrismiteRedBright = { fg = colors.red_bright }, + PrismiteOrange = { fg = colors.orange }, + PrismiteOrangeBright = { fg = colors.orange }, + PrismiteYellow = { fg = colors.yellow }, + PrismiteYellowBright = { fg = colors.yellow_bright }, + PrismiteGreen = { fg = colors.green }, + PrismiteGreenBright = { fg = colors.green_bright }, + PrismiteCyan = { fg = colors.cyan }, + PrismiteCyanBright = { fg = colors.cyan_bright }, + PrismiteBlue = { fg = colors.blue }, + PrismiteBlueBright = { fg = colors.blue_bright }, + PrismitePurple = { fg = colors.purple }, + PrismitePuprleBright = { fg = colors.purple_bright }, + PrismitePink = { fg = colors.pink }, + PrismitePinkBright = { fg = colors.pink_bright }, +} |