> (defun my/tab-bar-tab-name-format-function (tab i)
> (propertize
> (tab-bar-tab-name-format-default tab i)
> 'mouse-face '(:inverse-video t))) ; or a named face
> (setopt tab-bar-tab-name-format-function
> #'my/tab-bar-tab-name-format-function)
>
> And move the mouse over the tab. It should invert. It does for me.
Thanks, now it works. The requirement is that the tab-bar-mode
should be disabled before evaluating the above code. Otherwise,
with already enabled tab-bar-mode it has no effect.