Skip to content

Commit d562235

Browse files
committed
fix(response): replace text-color with text-default
1 parent 847bf95 commit d562235

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/runtime/renderers/default/FormForgeResponse.vue

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ watch(
689689
class="space-y-4"
690690
>
691691
<div class="space-y-1">
692-
<h3 class="text-base font-semibold text-neutral-900">
692+
<h3 class="text-base font-semibold text-default">
693693
{{ page.title || t('response.page.fallback', { index: pageIndex + 1 }) }}
694694
</h3>
695695
<p
@@ -710,13 +710,13 @@ watch(
710710
v-if="isLineLayout"
711711
class="grid grid-cols-1 gap-2 md:grid-cols-[minmax(0,1fr)_minmax(0,2fr)] md:gap-6"
712712
>
713-
<p class="whitespace-pre-wrap text-sm font-medium text-neutral-900">
713+
<p class="whitespace-pre-wrap text-sm font-medium text-default">
714714
{{ item.question }}
715715
</p>
716716

717717
<div
718718
v-if="item.answer.kind === 'text'"
719-
class="whitespace-pre-wrap text-sm text-neutral-700"
719+
class="whitespace-pre-wrap text-sm text-default"
720720
>
721721
{{ item.answer.value }}
722722
</div>
@@ -750,7 +750,7 @@ watch(
750750
/>
751751

752752
<div class="min-w-0 flex-1">
753-
<p class="truncate text-sm text-neutral-700">
753+
<p class="truncate text-sm text-default">
754754
{{ file.name }}
755755
</p>
756756
<p
@@ -807,13 +807,13 @@ watch(
807807
v-else
808808
class="space-y-1"
809809
>
810-
<p class="whitespace-pre-wrap text-sm font-medium text-neutral-900">
810+
<p class="whitespace-pre-wrap text-sm font-medium text-default">
811811
{{ item.question }}
812812
</p>
813813

814814
<p
815815
v-if="item.answer.kind === 'text'"
816-
class="whitespace-pre-wrap text-sm text-neutral-700"
816+
class="whitespace-pre-wrap text-sm text-default"
817817
>
818818
{{ item.answer.value }}
819819
</p>
@@ -847,7 +847,7 @@ watch(
847847
/>
848848

849849
<div class="min-w-0 flex-1">
850-
<p class="truncate text-sm text-neutral-700">
850+
<p class="truncate text-sm text-default">
851851
{{ file.name }}
852852
</p>
853853
<p

0 commit comments

Comments
 (0)