Skip to main content Svelte Highlight v7.21.1

Dual light/dark HighlightStyle preview

Dual light/dark HighlightStyle

mode

Following your OS / browser prefers-color-scheme. Switch your system theme to see it flip.

interface User {
  id: number;
  name: string;
}

const greet = (user: User): string => {
  return `Hello, ${user.name}!`;
};