1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 },
}
|