Fix incorrect ITheme reference in comments

This commit is contained in:
TatLead
2025-12-24 07:10:12 +08:00
parent 54fcb1ea2f
commit 49b49627f1
+3 -3
View File
@@ -367,17 +367,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;
/**