Custom HighlightStyle works only in dark mode

I have the following custom HighlightStyle:

const customHightlight = HighlightStyle.define([
    {
      tag: tags.moduleKeyword,
      cursor: 'help',
    },
  ]);
const extensions = [
    syntaxHighlighting(customHightlight),
    json(),
  ];

for dark mode this does whats I intend it to: change the cursor type to help, when one hovers over the specified tag, leaving all other styles unchanged.

In light mode however, the cursor change does get applied, but all other styles are removed. See the images for reference:

image
image

Explicitly include the default highlight style if you’re using basicSetup. By default, it is added as a fallback style, causing it to be ignored if any other highlighter is provided.