From da560afb97ff9b38ae8db28bd1b05598e96d8801 Mon Sep 17 00:00:00 2001 From: Thomas Trompette Date: Mon, 18 Aug 2025 18:52:02 +0200 Subject: [PATCH] Put back transparent background for code editor (#13966) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It was black since this PR https://github.com/twentyhq/twenty/commit/464a480043f3d6d1c4a95ecd39489f83e0611e60 Capture d’écran 2025-08-18 à 18 36
47 --- .../input/code-editor/theme/utils/getBaseCodeEditorTheme.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/twenty-ui/src/input/code-editor/theme/utils/getBaseCodeEditorTheme.ts b/packages/twenty-ui/src/input/code-editor/theme/utils/getBaseCodeEditorTheme.ts index 11a1310bf8..ec2a40c1db 100644 --- a/packages/twenty-ui/src/input/code-editor/theme/utils/getBaseCodeEditorTheme.ts +++ b/packages/twenty-ui/src/input/code-editor/theme/utils/getBaseCodeEditorTheme.ts @@ -27,8 +27,7 @@ export const getBaseCodeEditorTheme = ({ }, ], colors: { - // eslint-disable-next-line @nx/workspace-no-hardcoded-colors - 'editor.background': '#000000', + 'editor.background': '#00000000', 'editorCursor.foreground': theme.font.color.primary, 'editorLineNumber.foreground': theme.font.color.extraLight, 'editorLineNumber.activeForeground': theme.font.color.light,