rework colors

This commit is contained in:
2026-04-04 22:43:32 -07:00
parent ce10edd9cd
commit 591186bc14

View File

@@ -11,34 +11,34 @@ export const DATA_TYPES = new Set([
export const SOCKET_WIDGET_TYPES = new Set(['FLOAT', 'INT']); export const SOCKET_WIDGET_TYPES = new Set(['FLOAT', 'INT']);
export const TYPE_COLORS: Record<string, string> = { export const TYPE_COLORS: Record<string, string> = {
DATA_FIELD: '#3a7abf', DATA_FIELD: '#0800ff',
IMAGE: '#00ff08a0', IMAGE: '#00ff08',
LINE: '#ffbe5c', LINE: '#ffb300',
RECORD_TABLE: '#35e2fd', RECORD_TABLE: '#ff0000',
DATA_TABLE: '#ff7474', DATA_TABLE: '#fbff00',
COORD: '#e91ed1', COORD: '#ea00ff',
COORDPAIR: '#5cb861', COORDPAIR: '#f0cbff',
FLOAT: '#ab3197', FLOAT: '#00bfff',
INT: '#ffffff', INT: '#ffffff',
ANNOTATION_SOURCE: '#06b6d4', ANNOTATION_SOURCE: '#00ffbf',
COLORMAP: '#f472b6', COLORMAP: '#000000',
MESH_MODEL: '#14b8a6', MESH_MODEL: '#6e659e',
FONT: '#fb7185', FONT: '#936991',
FILE_PATH: '#f59e0b', FILE_PATH: '#f1d19b',
DIRECTORY: '#f97316', DIRECTORY: '#90d294',
}; };
export const CAT_COLORS: Record<string, string> = { export const CAT_COLORS: Record<string, string> = {
Input: '#37474f', Input: '#2c4b31',
Display: '#212121', Display: '#5f4e35',
Overlay: '#0f766e', Overlay: '#214844',
Geometry: '#0d9488', Geometry: '#3c2a46',
Filter: '#1a237e', Filter: '#34375a',
Spectral: '#4c1d95', Spectral: '#5f4938',
'Level & Correct': '#1b5e20', 'Level & Correct': '#553636',
Measure: '#4a148c', Measure: '#382f43',
Mask: '#7c2d12', Mask: '#4d3c2a',
Grains: '#bf360c', Grains: '#5a4703',
}; };
export const SOCKET_COMPATIBILITY: Record<string, Set<string>> = { export const SOCKET_COMPATIBILITY: Record<string, Set<string>> = {