Merge pull request #5481 from BattlefieldDuck/fix/incorrect-theme-reference

Fix incorrect ITheme reference in comments
This commit is contained in:
Daniel Imms
2025-12-24 12:29:40 -08:00
committed by GitHub
+3 -3
View File
@@ -351,17 +351,17 @@ declare module '@xterm/xterm' {
selectionInactiveBackground?: string;
/**
* The scrollbar slider background color. Defaults to
* {@link ITerminalOptions.foreground foreground} with 20% opacity.
* {@link ITheme.foreground} with 20% opacity.
*/
scrollbarSliderBackground?: string;
/**
* The scrollbar slider background color when hovered. Defaults to
* {@link ITerminalOptions.foreground foreground} with 40% opacity.
* {@link ITheme.foreground} with 40% opacity.
*/
scrollbarSliderHoverBackground?: string;
/**
* The scrollbar slider background color when clicked. Defaults to
* {@link ITerminalOptions.foreground foreground} with 50% opacity.
* {@link ITheme.foreground} with 50% opacity.
*/
scrollbarSliderActiveBackground?: string;
/**