<?php
class Color {
var $R=255;
var $G=255;
var $B=255;
function Color($R=255,$G=255,$B=255) {
$this->R = $R;
$this->G = $G;
$this->B = $B;
}
}
?>