To change the color of interactive areas, a code on the object editing page in the CSS section of apartments grid styles shall be added:
For example, we will make interactive areas pink. To do so, set the color of the fill, the color of the contour, transparency of the fill, the transparency of the contour:
:root {
--chess-interaction-fill-color: rgba(765, 75, 155);
--chess-interaction-stroke-color: rgba(765, 75, 255);
--chess-interaction-fill-opacity: 0.3;
--chess-interaction-stroke-opacity: 0.9;
}