Est-ce un script qui te sort les couleurs que tu recherches ? Sinon :
<style type="text/css">
ul#mesCouleurs{
list-style: none;
}
ul#mesCouleurs li{
display: block;
width: 230px;
font-weight: bold;
color: #FFD800;
text-align: center;
}
</style>
<ul id="mesCouleurs">
<li style="background-color: rgb(0, 255, 255)">fond avec x% de bleu</li>
<li style="background-color: rgb(0, 148, 255)">fond avec x% de bleu</li>
<li style="background-color: rgb(0, 19, 127)">fond avec x% de bleu</li>
<li style="background-color: rgb(0, 0, 0)">fond avec x% de bleu</li>
</ul>
|