исправлено складывание ячеек

This commit is contained in:
2025-07-22 08:50:31 +03:00
parent 2671afce26
commit a71f018608
3 changed files with 61 additions and 19 deletions

View File

@@ -251,14 +251,14 @@ export function convertReferencesToHighlights(
): HighlightedCell[] {
const highlights: HighlightedCell[] = []
const colors = [
'bg-blue-200 border-blue-400',
'bg-green-200 border-green-400',
'bg-purple-200 border-purple-400',
'bg-red-200 border-red-400',
'bg-yellow-200 border-yellow-400',
'bg-indigo-200 border-indigo-400',
'bg-pink-200 border-pink-400',
'bg-orange-200 border-orange-400',
'bg-blue-200 text-blue-600',
'bg-green-200 text-green-600',
'bg-purple-200 text-purple-600',
'bg-red-200 text-red-600',
'bg-yellow-200 text-yellow-600',
'bg-indigo-200 text-indigo-600',
'bg-pink-200 text-pink-600',
'bg-orange-200 text-orange-600',
]
let colorIndex = 0