From f4e57defd4443ca888b29ced79ae4ef09e277591 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Karl=C3=A9n?= <113891532+adriankarlen@users.noreply.github.com> Date: Tue, 17 Oct 2023 16:57:43 +0200 Subject: [PATCH] feat(ui): add colors to command decorations --- src/theme/uiColors.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/theme/uiColors.ts b/src/theme/uiColors.ts index 13dd5e6f..3b4f8bc0 100644 --- a/src/theme/uiColors.ts +++ b/src/theme/uiColors.ts @@ -598,6 +598,9 @@ export const getUiColors = ( "terminal.border": palette.surface2, "terminal.dropBackground": dropBackground, "terminal.tab.activeBorder": accent, + "terminalCommandDecoration.defaultBackground": palette.surface2, + "terminalCommandDecoration.successBackground": palette.green, + "terminalCommandDecoration.errorBackground": palette.red, // title bar "titleBar.activeBackground": palette.crust,