When a Lightweight RadColorPicker has ShowIcon="true" and KeepInScreenBounds="true" configured, its tabs will be partially visible on the page.
The following solution can be used:
<script>
Telerik.Web.UI.ColorPicker.LightweightRenderer.prototype.getPaletteHeight = function ($palette) {
var paletteHeight = $palette.height() +
$palette.find(".rcpTabs").height();
return paletteHeight;
}
</script>