kitchen-simulator
Version:
It is a kitchen simulator (self-contained micro-frontend).
72 lines (71 loc) • 1.91 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.TOOLBAR_COLOR = exports.SECONDARY_COLOR = exports.PRIMARY_COLOR = exports.MESH_SELECTED = exports.MATERIAL_COLORS = exports.LINE_MESH_COLOR = exports.LINE_MESH = exports.INTERIOR_LINE = exports.COLORS = exports.AREA_MESH_COLOR = void 0;
// COLORS
var COLORS = exports.COLORS = {
white: '#FFF',
lightgrey: '#d3d3d3',
black: '#000'
};
var MATERIAL_COLORS = exports.MATERIAL_COLORS = {
500: {
amber: '#FFC107',
blue_grey: '#607D8B',
blue: '#2196F3',
brown: '#795548',
cyan: '#00BCD4',
deep_orange: '#FF5722',
deep_purple: '#673AB7',
green: '#4CAF50',
grey: '#9E9E9E',
indigo: '#3F51B5',
light_blue: '#03A9F4',
light_green: '#8BC34A',
lime: '#CDDC39',
orange: '#FF9800',
pink: '#E91E63',
purple: '#9C27B0',
red: '#F44336',
teal: '#009688',
yellow: '#FFEB3B'
}
};
var PRIMARY_COLOR = exports.PRIMARY_COLOR = {
main: '#DEDEDE',
alt: '#DEDEDE',
icon: '#A2A2A2',
border: '1px solid #555',
text_main: COLORS.black,
text_alt: '#232323',
input: '#55595C'
};
var SECONDARY_COLOR = exports.SECONDARY_COLOR = {
main: '#1CA6FC',
alt: '#005FAF',
icon: '#1CA6FC',
border: '1px solid #FFF'
};
var TOOLBAR_COLOR = exports.TOOLBAR_COLOR = {
normal: 'rgb(211,230,228)',
focus: 'rgba(71, 71, 71,0.9)',
active: 'rgba(17, 131, 187, 0.8)'
// active: 'rgba(34,144,107, 0.8)',
};
var MESH_SELECTED = exports.MESH_SELECTED = 'rgba(71, 71, 71,0.9)';
var AREA_MESH_COLOR = exports.AREA_MESH_COLOR = {
selected: 'rgb(234,234,255)',
unselected: 'rgb(221,221,255)'
};
var INTERIOR_LINE = exports.INTERIOR_LINE = {
selected: '#6E1EA8',
unselected: ' #455A64'
};
var LINE_MESH_COLOR = exports.LINE_MESH_COLOR = {
selected: '#6E1EA8',
unselected: 'rgb(135,145,171)'
};
var LINE_MESH = exports.LINE_MESH = {
selected: '#6E1EA8'
};