Skip to content

Commit b3125d5

Browse files
committed
feat(palette): remove mostly unused 'lightgrey' color
1 parent 4d167d3 commit b3125d5

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,6 @@ vim.api.nvim_create_autocmd("User", {
249249
| ![#1e2124](https://place-hold.it/15/1e2124/1e2124?text=+) | `#1e2124` | bgAlt |
250250
| ![#3c4048](https://place-hold.it/15/3c4048/3c4048?text=+) | `#3c4048` | bgHighlight |
251251
| ![#ffffff](https://place-hold.it/15/ffffff/ffffff?text=+) | `#ffffff` | fg |
252-
| ![#bbd3ff](https://place-hold.it/15/bbd3ff/bbd3ff?text=+) | `#bbd3ff` | lightGrey |
253252
| ![#7b8496](https://place-hold.it/15/7b8496/7b8496?text=+) | `#7b8496` | grey |
254253
| ![#5ea1ff](https://place-hold.it/15/5ea1ff/5ea1ff?text=+) | `#5ea1ff` | blue |
255254
| ![#5eff6c](https://place-hold.it/15/5eff6c/5eff6c?text=+) | `#5eff6c` | green |

lua/cyberdream/colors.lua

-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ local M = {}
77
---@field bgHighlight "#e9eef2"|string
88
---@field bg_solid? string
99
---@field fg "#16181a"|string
10-
---@field lightGrey "#bbd3ff"|string
1110
---@field grey "#7b8496"|string
1211
---@field blue "#5ea1ff"|string
1312
---@field green "#5eff6c"|string
@@ -25,7 +24,6 @@ local M = {}
2524
---@field bgHighlight "#3c4048"|string
2625
---@field bg_solid? string
2726
---@field fg "#ffffff"|string
28-
---@field lightGrey "#bbd3ff"|string
2927
---@field grey "#7b8496"|string
3028
---@field blue "#5ea1ff"|string
3129
---@field green "#5eff6c"|string
@@ -44,7 +42,6 @@ M.default = {
4442
bgAlt = "#1e2124",
4543
bgHighlight = "#3c4048",
4644
fg = "#ffffff",
47-
lightGrey = "#bbd3ff",
4845
grey = "#7b8496",
4946
blue = "#5ea1ff",
5047
green = "#5eff6c",

lua/cyberdream/extensions/mini.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ function M.get(opts, t)
5656
MiniHipatternsNote = { fg = t.bg_solid, bg = t.blue, bold = true },
5757
MiniHipatternsTodo = { fg = t.bg_solid, bg = t.cyan, bold = true },
5858

59-
MiniIconsAzure = { fg = t.lightGrey },
59+
MiniIconsAzure = { fg = util.blend(t.cyan, t.fg, 0.3) },
6060
MiniIconsBlue = { fg = t.blue },
6161
MiniIconsCyan = { fg = t.cyan },
6262
MiniIconsGreen = { fg = t.green },

0 commit comments

Comments
 (0)