File tree 3 files changed +1
-5
lines changed
3 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -249,7 +249,6 @@ vim.api.nvim_create_autocmd("User", {
249
249
| ![ #1e2124] ( https://place-hold.it/15/1e2124/1e2124?text=+ ) | ` #1e2124 ` | bgAlt |
250
250
| ![ #3c4048] ( https://place-hold.it/15/3c4048/3c4048?text=+ ) | ` #3c4048 ` | bgHighlight |
251
251
| ![ #ffffff] ( https://place-hold.it/15/ffffff/ffffff?text=+ ) | ` #ffffff ` | fg |
252
- | ![ #bbd3ff] ( https://place-hold.it/15/bbd3ff/bbd3ff?text=+ ) | ` #bbd3ff ` | lightGrey |
253
252
| ![ #7b8496] ( https://place-hold.it/15/7b8496/7b8496?text=+ ) | ` #7b8496 ` | grey |
254
253
| ![ #5ea1ff] ( https://place-hold.it/15/5ea1ff/5ea1ff?text=+ ) | ` #5ea1ff ` | blue |
255
254
| ![ #5eff6c] ( https://place-hold.it/15/5eff6c/5eff6c?text=+ ) | ` #5eff6c ` | green |
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ local M = {}
7
7
--- @field bgHighlight " #e9eef2" | string
8
8
--- @field bg_solid ? string
9
9
--- @field fg " #16181a" | string
10
- --- @field lightGrey " #bbd3ff" | string
11
10
--- @field grey " #7b8496" | string
12
11
--- @field blue " #5ea1ff" | string
13
12
--- @field green " #5eff6c" | string
@@ -25,7 +24,6 @@ local M = {}
25
24
--- @field bgHighlight " #3c4048" | string
26
25
--- @field bg_solid ? string
27
26
--- @field fg " #ffffff" | string
28
- --- @field lightGrey " #bbd3ff" | string
29
27
--- @field grey " #7b8496" | string
30
28
--- @field blue " #5ea1ff" | string
31
29
--- @field green " #5eff6c" | string
@@ -44,7 +42,6 @@ M.default = {
44
42
bgAlt = " #1e2124" ,
45
43
bgHighlight = " #3c4048" ,
46
44
fg = " #ffffff" ,
47
- lightGrey = " #bbd3ff" ,
48
45
grey = " #7b8496" ,
49
46
blue = " #5ea1ff" ,
50
47
green = " #5eff6c" ,
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ function M.get(opts, t)
56
56
MiniHipatternsNote = { fg = t .bg_solid , bg = t .blue , bold = true },
57
57
MiniHipatternsTodo = { fg = t .bg_solid , bg = t .cyan , bold = true },
58
58
59
- MiniIconsAzure = { fg = t . lightGrey },
59
+ MiniIconsAzure = { fg = util . blend ( t . cyan , t . fg , 0.3 ) },
60
60
MiniIconsBlue = { fg = t .blue },
61
61
MiniIconsCyan = { fg = t .cyan },
62
62
MiniIconsGreen = { fg = t .green },
You can’t perform that action at this time.
0 commit comments