Skip to content

Commit 17ec71c

Browse files
committed
feat: better rainbow colors
1 parent 15d83cd commit 17ec71c

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

lua/tokyonight/colors/init.lua

+10-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,16 @@ function M.setup(opts)
6565
colors.info = colors.blue2
6666
colors.hint = colors.teal
6767

68-
colors.rainbow = { colors.blue, colors.yellow, colors.green, colors.teal, colors.magenta, colors.purple }
68+
colors.rainbow = {
69+
colors.blue,
70+
colors.yellow,
71+
colors.green,
72+
colors.teal,
73+
colors.magenta,
74+
colors.purple,
75+
colors.orange,
76+
colors.red,
77+
}
6978

7079
-- stylua: ignore
7180
--- @class TerminalColors

lua/tokyonight/groups/mini_icons.lua

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ M.url = "https://github.com/echasnovski/mini.icons"
66
function M.get(c)
77
-- stylua: ignore
88
return {
9-
MiniIconsAzure = { fg = c.info },
9+
MiniIconsGrey = { fg = c.fg },
10+
MiniIconsPurple = { fg = c.purple },
1011
MiniIconsBlue = { fg = c.blue },
12+
MiniIconsAzure = { fg = c.info },
1113
MiniIconsCyan = { fg = c.teal },
1214
MiniIconsGreen = { fg = c.green },
13-
MiniIconsGrey = { fg = c.fg },
15+
MiniIconsYellow = { fg = c.yellow },
1416
MiniIconsOrange = { fg = c.orange },
15-
MiniIconsPurple = { fg = c.purple },
1617
MiniIconsRed = { fg = c.red },
17-
MiniIconsYellow = { fg = c.yellow },
1818
}
1919
end
2020

0 commit comments

Comments
 (0)