11 lines
229 B
TypeScript
11 lines
229 B
TypeScript
import type { EdgeType } from '@/types'
|
|
|
|
export const EDGE_DEFAULT_COLORS: Record<EdgeType, string> = {
|
|
ethernet: '#30363d',
|
|
wifi: '#00d4ff',
|
|
iot: '#e3b341',
|
|
vlan: '#00d4ff',
|
|
virtual: '#8b949e',
|
|
cluster: '#ff6e00',
|
|
}
|