UNPKG

389 BJavaScriptView Raw
1export var highlightStyle = function highlightStyle(color) {
2 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");
3};
4export var highlightObject = function highlightObject(color) {
5 return {
6 outline: "2px dashed ".concat(color),
7 outlineOffset: 2,
8 boxShadow: '0 0 0 6px rgba(255,255,255,0.6),'
9 };
10};
\No newline at end of file