diff --git a/ui/src/debug/ItemTable.svelte b/ui/src/debug/ItemTable.svelte index 9577e88..87e1e12 100644 --- a/ui/src/debug/ItemTable.svelte +++ b/ui/src/debug/ItemTable.svelte @@ -60,7 +60,7 @@ {#each schema as column (column.name)} + class="{column.annotation === ColumnAnnotation.ADDED ? 'text-green-800' : column.annotation === ColumnAnnotation.REMOVED ? 'text-red-800' : ''} transition-colors duration-300 delay-200"> {column.name} {/each} @@ -184,13 +184,13 @@ } tr.changePlus td:not(#page) { - @apply text-green-600; + @apply text-green-800; } tr.changeMinus td:not(#page) { - @apply text-red-600; + @apply text-red-800; } tr.changeNeutral td:not(#page) { - @apply text-yellow-600; + @apply text-yellow-800; } .fontTooltip {