mysticsymbolic.github.io/lib/colors.ts

17 wiersze
391 B
TypeScript
Czysty Zwykły widok Historia

2021-02-15 14:13:00 +00:00
import type { AttachmentPointType } from "./specs";
2021-02-14 00:24:46 +00:00
export const STROKE_REPLACEMENT_COLOR = "#000000";
export const FILL_REPLACEMENT_COLOR = "#ffffff";
2021-02-15 14:13:00 +00:00
export const ATTACHMENT_POINT_COLORS: {
[key in AttachmentPointType]: string;
} = {
tail: "#ff0000",
leg: "#ffff00",
arm: "#00ff00",
horn: "#00ffff",
crown: "#0000ff",
};
2021-02-14 00:24:46 +00:00
export const NESTING_BOUNDING_BOX_COLOR = "#ff00ff";