Puoi farlo anche su Wp. I riquadri lì sono creati con delle immagini all'interno dei link ma puoi anche usare dei colori di sfondo.
Un esempio:

codice:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento senza titolo</title>
<script type="text/javascript">

function cambia_col(color) {
    document.getElementById("sfondo_foto").style.backgroundColor = color;
}
</script>
<style type="text/css">
<!--
#sfondo_foto {
    width:300px;
    height:300px;
    background-color:#ccf
}
#bgCol {
    overflow:hidden;
    width:200px;
    height:20px;
    margin-top:20px;
}
#bgCol a {
    display:block;
    width:20px;
    height:20px;
    float:left;
    margin:0 5px
}
#bgCol a:nth-child(1){
background:#fff;
}
#bgCol a:nth-child(2){
background:#eee;
}
#bgCol a:nth-child(3){
background:#888;
}
#bgCol a:nth-child(4){
background:#222;
} 
#bgCol a:nth-child(5){
background:#000;
}   
-->
</style>
</head>

<body>
<div id="sfondo_foto"></div>
<div id="bgCol">
        <a href="#none" onclick="cambia_col('#FFFFFF');"></a>
        <a href="#none" onclick="cambia_col('#EEEEEE');"></a>
        <a href="#none" onclick="cambia_col('#888888');"></a>
        <a href="#none" onclick="cambia_col('#222222');"></a>
        <a href="#none" onclick="cambia_col('#000000');"></a>
      </div>

</body>
</html>