private String getBackgroundColor(final Set<IWidget> widgets) {
        final List<String> backgroundColors = widgets.stream()
                .map(widget -> widget.getWidgetModel().getProperties().getBorder())
                .filter(Optional::isPresent)
                .map(Optional::get)