fidget.nvim icon indicating copy to clipboard operation
fidget.nvim copied to clipboard

edit title and text colors

Open mrdandelion6 opened this issue 5 months ago • 0 comments

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:

        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

mrdandelion6 avatar Oct 31 '25 05:10 mrdandelion6