initial commit

This commit is contained in:
Jordan Knott
2020-04-09 21:40:22 -05:00
commit 9611105364
141 changed files with 29236 additions and 0 deletions

View File

@ -0,0 +1,13 @@
const KeyCodes = {
TAB: 9,
ENTER: 13,
ESCAPE: 27,
SPACE: 32,
ARROW_LEFT: 37,
ARROW_UP: 38,
ARROW_RIGHT: 39,
ARROW_DOWN: 40,
M: 77,
};
export default KeyCodes;

View File

@ -0,0 +1,14 @@
const LabelColors = {
GREEN: '#61bd4f',
YELLOW: '#f2d600',
ORANGE: '#ff9f1a',
RED: '#eb5a46',
PURPLE: '#c377e0',
BLUE: '#0079bf',
SKY: '#00c2e0',
LIME: '#51e898',
PINK: '#ff78cb',
BLACK: '#344563',
};
export default LabelColors;

View File

@ -0,0 +1,6 @@
const MenuTypes = {
LABEL_MANAGER: 1,
LABEL_EDITOR: 2,
};
export default MenuTypes;