From a89dc8f845c0ddb69abd403da72823bea5415e5c Mon Sep 17 00:00:00 2001 From: Guilhem Date: Mon, 28 Oct 2024 10:41:41 +0100 Subject: [PATCH] Put back colors for types --- .../src/lib/components/propertyPicker/ObjectViewer.svelte | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/lib/components/propertyPicker/ObjectViewer.svelte b/frontend/src/lib/components/propertyPicker/ObjectViewer.svelte index 86c0ee451d..afb93eb1a4 100644 --- a/frontend/src/lib/components/propertyPicker/ObjectViewer.svelte +++ b/frontend/src/lib/components/propertyPicker/ObjectViewer.svelte @@ -206,14 +206,14 @@ @apply text-tertiary; } .val.string { - @apply text-primary; + @apply text-green-600 dark:text-green-400/80; } .val.number { - @apply text-primary; + @apply text-orange-600 dark:text-orange-400/90; @apply font-mono; } .val.boolean { - @apply text-primary; + @apply text-blue-600 dark:text-blue-400/90; }