2018-09-04 20:56:49 +00:00
|
|
|
/* Screen widths less than this will be treated as mobile */
|
2019-07-23 16:32:43 +00:00
|
|
|
export const DESKTOP_WIDTH_THRESHOLD = 1000;
|
2019-07-14 11:47:06 +00:00
|
|
|
|
|
|
|
export const DEFAULT_NODE_COLOR = "#CED9E0";
|
|
|
|
export const SELECTED_NODE_COLOR = "#48AFF0";
|
2019-07-21 18:05:07 +00:00
|
|
|
|
2019-07-24 15:51:44 +00:00
|
|
|
// From https://blueprintjs.com/docs/#core/colors.qualitative-color-schemes
|
|
|
|
export const QUALITATIVE_COLOR_SCHEME = [
|
|
|
|
"#2965CC",
|
|
|
|
"#29A634",
|
|
|
|
"#D99E0B",
|
|
|
|
"#D13913",
|
|
|
|
"#8F398F",
|
|
|
|
"#00B3A4",
|
|
|
|
"#DB2C6F",
|
|
|
|
"#9BBF30",
|
|
|
|
"#96622D",
|
|
|
|
"#7157D9"
|
|
|
|
];
|
|
|
|
|
2019-07-21 18:05:07 +00:00
|
|
|
export const INSTANCE_DOMAIN_PATH = "/instance/:domain";
|
|
|
|
export interface IInstanceDomainPath {
|
|
|
|
domain: string;
|
|
|
|
}
|