Compare commits

...

1 Commits

Author SHA1 Message Date
Diego Imbert
fc818e9ed8 Monaco transparent bg 2025-09-17 16:13:02 +02:00
2 changed files with 4 additions and 3 deletions

View File

@@ -537,7 +537,7 @@
<SplitPanesWrapper>
<Splitpanes class="!overflow-visible">
<Pane bind:size={codePanelSize} minSize={10} class="!overflow-visible">
<div class="h-full !overflow-visible bg-gray-50 dark:bg-[#272D38] relative">
<div class="h-full !overflow-visible bg-surface dark:bg-[#272D38] relative">
<div class="absolute top-2 right-4 z-10 flex flex-row gap-2">
{#if assets?.length}
<AssetsDropdownButton {assets} />

View File

@@ -231,7 +231,7 @@ export async function initializeVscode(caller?: string, htmlContainer?: HTMLElem
],
colors: {
'editor.foreground': '#D8DEE9',
'editor.background': '#272D38',
'editor.background': '#00000000',
'editor.selectionBackground': '#434C5ECC',
'editor.lineHighlightBackground': '#3B4252',
'editorCursor.foreground': '#D8DEE9',
@@ -244,8 +244,9 @@ export async function initializeVscode(caller?: string, htmlContainer?: HTMLElem
inherit: true,
rules: [],
colors: {
'editor.background': '#FFFFFF00',
'editorLineNumber.foreground': '#999',
'editorGutter.background': '#F9FAFB'
'editorGutter.background': '#FFFFFF00'
}
})