ソースを参照

Updates alert neutral color properties

main
Keith Daulton 2年前
コミット
9df47babb3
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/webviews/apps/shared/theme.ts

+ 1
- 1
src/webviews/apps/shared/theme.ts ファイルの表示

@ -121,7 +121,7 @@ export function initializeAndWatchThemeColors(callback?: () => void) {
isLightTheme ? darken(color, 5) : lighten(color, 5),
);
bodyStyle.setProperty('--color-alert-errorBackground', color);
color = computedStyle.getPropertyValue('--vscode-input-background').trim();
color = isLightTheme ? darken(backgroundColor, 5) : lighten(backgroundColor, 5);
bodyStyle.setProperty(
'--color-alert-neutralHoverBackground',
isLightTheme ? darken(color, 5) : lighten(color, 5),

読み込み中…
キャンセル
保存