Skip to content

Commit 910d00c

Browse files
authored
Merge pull request #145 from ful1e5/main
Fix dark foreground color for visited entries in telescope.nvim
2 parents 52f8eff + 0fb28b3 commit 910d00c

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [unreleased]
99

10+
### Added
11+
12+
-
13+
14+
### Fixes
15+
16+
- dark foreground color for visited entries in telescope.nvim
17+
1018
## [v0.0.3] - 09 Dec 2021
1119

1220
### Added

lua/github-theme/theme.lua

+1-8
Original file line numberDiff line numberDiff line change
@@ -382,14 +382,7 @@ function M.setup(config)
382382
TelescopeBorder = {fg = c.border},
383383
TelescopePromptPrefix = {fg = c.fg},
384384
TelescopeMatching = {fg = c.syntax.constant, style = "bold"},
385-
TelescopePreviewPipe = {fg = c.bright_yellow},
386-
TelescopePreviewRead = {fg = c.bright_yellow},
387-
TelescopePreviewSize = {fg = c.bright_green},
388-
TelescopePreviewUser = {fg = c.bright_yellow},
389-
TelescopePreviewBlock = {fg = c.bright_yellow},
390-
TelescopePreviewGroup = {fg = c.bright_yellow},
391-
TelescopePreviewWrite = {fg = c.bright_magenta},
392-
TelescopePreviewSticky = {fg = c.bright_cyan},
385+
TelescopeMultiSelection = {fg = c.syntax.comment},
393386

394387
-- NvimTree
395388
NvimTreeNormal = {fg = c.fg_light, bg = c.bg_sidebar},

0 commit comments

Comments
 (0)