edit title and text colors
- Dominant language
- Lua
- Stars
- 2.6k
- Forks
- 83
- PR merge metrics
- No merged PRs in 30d
Description
i want to give the box a custom look and change the following:
- [x] make border pink
- [x] make background transparent
- [ ] make main text pink
- [ ] make other text light blue or something
currently have the following config:
```lua
config = function()
require('fidget').setup {
notification = {
window = {
normal_hl = '',
winblend = 0,
border = 'rounded',
border_hl = 'FidgetBorder',
relative = 'win',
},
view = {
stack_upwards = true,
icon_separator = ' ',
group_separator = '---',
group_separator_hl = 'Comment',
},
},
}
-- change colors
vim.api.nvim_set_hl(0, 'FidgetBorder', { fg = '#f0a4d0', bg = 'NONE' })
vim.api.nvim_set_hl(0, 'FidgetTask', { fg = '#f0a4d0', bg = 'NONE' })
vim.api.nvim_set_hl(0, 'FidgetTitle', { fg = '#f0a4d0', bg = 'NONE' })
end
```
`FidgetBorder` is working but the other two aren't
Contributor guide
No contributing guide indexed for this repository
Research direction
Start with the notification configuration and the FidgetTask and FidgetTitle highlight names shown in the report. Trace where those highlights are used for notification text, then verify that the main and secondary text colors change while FidgetBorder remains pink.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- lua, neovim
- Domain
- devtools
- Issue type
- Bug
- Difficulty
- 2/5
- Estimated time
- 1-3 hours
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 38/100