fix(editor): Fix issues in dark mode (#9068)

Co-authored-by: Giulio Andreini <andreini@netseven.it>
This commit is contained in:
Tomi Turtiainen
2024-04-08 09:21:54 +03:00
committed by GitHub
parent df56153f8b
commit 7467aa30e6
8 changed files with 14 additions and 9 deletions

View File

@@ -113,7 +113,7 @@ export const CONNECTOR_PAINT_STYLE_DATA: PaintStyle = {
export const getConnectorColor = (type: ConnectionTypes, category?: string): string => {
if (category === 'error') {
return '--node-error-output-color';
return '--color-node-error-output-text-color';
}
if (type === NodeConnectionType.Main) {