frankx: nächste websichere Farbe berechnen

Beitrag lesen

Hellihello Sven,

sowas?

  
<?php  
 $Farbwerte=array("0","3","6","9","C","F");  
 $Rotwert="0";  
 $Grünwert="0";  
 $Blauwert="0";  
  
 foreach($Farbwerte as $Farbwert) {  
 $Rotwert=$Farbwert;  
?>  
<table style="font-family:Courier">  
<?php  
  foreach($Farbwerte as $Farbwert) {  
   $Grünwert=$Farbwert;  
?>  
 <tr>  
<?php  
   foreach($Farbwerte as $Farbwert) {  
   $Blauwert=$Farbwert;  
   $RGB="#$Rotwert$Rotwert$Grünwert$Grünwert$Blauwert$Blauwert";  
?>  
  <td style="color:white;background-color:<?php echo $RGB;?>"><?php echo $RGB;?></td>  
<?php  
   }  
?>  
 </tr>  
<?php  
  }  
?>  
</table>  
<?php  
 }  
?>  

Gruß,

frankx