Make changed item colors more decent

This commit is contained in:
Johannes Zillmann 2021-03-04 07:51:33 +01:00
parent 4d41de82ea
commit 6f51f30e44

View File

@ -60,7 +60,7 @@
{#each schema as column (column.name)} {#each schema as column (column.name)}
<th <th
transition:scale transition:scale
class="{column.annotation === ColumnAnnotation.ADDED ? 'text-green-600' : column.annotation === ColumnAnnotation.REMOVED ? 'text-red-600' : ''} transition-colors duration-300 delay-200"> class="{column.annotation === ColumnAnnotation.ADDED ? 'text-green-800' : column.annotation === ColumnAnnotation.REMOVED ? 'text-red-800' : ''} transition-colors duration-300 delay-200">
{column.name} {column.name}
</th> </th>
{/each} {/each}
@ -184,13 +184,13 @@
} }
tr.changePlus td:not(#page) { tr.changePlus td:not(#page) {
@apply text-green-600; @apply text-green-800;
} }
tr.changeMinus td:not(#page) { tr.changeMinus td:not(#page) {
@apply text-red-600; @apply text-red-800;
} }
tr.changeNeutral td:not(#page) { tr.changeNeutral td:not(#page) {
@apply text-yellow-600; @apply text-yellow-800;
} }
.fontTooltip { .fontTooltip {