UNPKG

602 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.highlightObject = exports.highlightStyle = void 0;
7
8var highlightStyle = function highlightStyle(color) {
9 return "\n outline: 2px dashed ".concat(color, ";\n outline-offset: 2px;\n box-shadow: 0 0 0 6px rgba(255,255,255,0.6);\n");
10};
11
12exports.highlightStyle = highlightStyle;
13
14var highlightObject = function highlightObject(color) {
15 return {
16 outline: "2px dashed ".concat(color),
17 outlineOffset: 2,
18 boxShadow: '0 0 0 6px rgba(255,255,255,0.6),'
19 };
20};
21
22exports.highlightObject = highlightObject;
\No newline at end of file