Fix Table diff colors (#1084)

This commit is contained in:
Sebastian Stachowicz
2025-08-01 02:36:03 +00:00
committed by GitHub
parent 9598553e5d
commit 3002d250a1
6 changed files with 33 additions and 15 deletions

View File

@@ -178,7 +178,7 @@ function StringDiffVisualizer:render()
size = UDim2.new(1, 0, 1, 0),
position = UDim2.new(0, 0, 0, 0),
text = oldString,
lineBackground = theme.Diff.Remove,
lineBackground = theme.Diff.Background.Remove,
markedLines = self.state.remove,
}),
}),
@@ -193,7 +193,7 @@ function StringDiffVisualizer:render()
size = UDim2.new(1, 0, 1, 0),
position = UDim2.new(0, 0, 0, 0),
text = newString,
lineBackground = theme.Diff.Add,
lineBackground = theme.Diff.Background.Add,
markedLines = self.state.add,
}),
}),