10 lines
179 B
JavaScript
10 lines
179 B
JavaScript
|
// @flow
|
||
|
|
||
|
import { ColorPalette } from '../../../base/styles';
|
||
|
|
||
|
export const CONNECTOR_INDICATOR_COLORS = [
|
||
|
ColorPalette.red,
|
||
|
ColorPalette.Y200,
|
||
|
ColorPalette.green
|
||
|
];
|