UNPKG

294 BJavaScriptView Raw
1export const highlightStyle = color => `
2 outline: 2px dashed ${color};
3 outline-offset: 2px;
4 box-shadow: 0 0 0 6px rgba(255,255,255,0.6);
5`;
6export const highlightObject = color => ({
7 outline: `2px dashed ${color}`,
8 outlineOffset: 2,
9 boxShadow: '0 0 0 6px rgba(255,255,255,0.6),'
10});
\No newline at end of file