Skip to content

Commit 9fae724

Browse files
committed
fix(components): better tag colors
1 parent c6106ce commit 9fae724

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/app-backend-vue3/src/components/tree.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ export class ComponentWalker {
171171
if (instance.suspense) {
172172
treeNode.tags.push({
173173
label: 'suspense',
174-
backgroundColor: 0xc5c4fc,
174+
backgroundColor: 0x7d7dd7,
175175
textColor: 0xffffff
176176
})
177177
}

packages/app-frontend/src/features/components/ComponentTreeNode.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ export default defineComponent({
157157
<span
158158
v-if="instance.isFragment"
159159
v-tooltip="'Has multiple root DOM nodes'"
160-
class="info fragment bg-blue-300 dark:bg-blue-800"
160+
class="info fragment bg-blue-400 dark:bg-blue-800"
161161
>
162162
fragment
163163
</span>

0 commit comments

Comments
 (0)