Skip to content

Commit 581e977

Browse files
committed
fix(theme): use design token for muted background in light mode
1 parent 64d0bc6 commit 581e977

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

app/components/ClaimPackageModal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ const connectorModalOpen = shallowRef(false)
370370
>
371371
{{ $t('claim.modal.preview_json') }}
372372
</summary>
373-
<pre class="p-3 text-xs font-mono text-fg-muted bg-[#0d0d0d] overflow-x-auto">{{
373+
<pre class="p-3 text-xs font-mono text-fg-muted bg-bg-muted overflow-x-auto">{{
374374
JSON.stringify(previewPackageJson, null, 2)
375375
}}</pre>
376376
</details>

app/components/ConnectorModal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ watch(open, isOpen => {
125125
</p>
126126

127127
<div
128-
class="flex items-center p-3 bg-[#0d0d0d] border border-border rounded-lg font-mono text-sm"
128+
class="flex items-center p-3 bg-bg-muted border border-border rounded-lg font-mono text-sm"
129129
>
130130
<span class="text-fg-subtle">$</span>
131131
<span class="text-fg ml-2">{{ executeNpmxConnectorCommand }}</span>

app/components/OperationsQueue.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ onUnmounted(() => {
198198
<!-- Result output for completed/failed -->
199199
<div
200200
v-else-if="op.result && (op.status === 'completed' || op.status === 'failed')"
201-
class="mt-2 p-2 bg-[#0d0d0d] border border-border rounded text-xs font-mono"
201+
class="mt-2 p-2 bg-bg-muted border border-border rounded text-xs font-mono"
202202
>
203203
<pre v-if="op.result.stdout" class="text-fg-muted whitespace-pre-wrap">{{
204204
op.result.stdout

0 commit comments

Comments
 (0)