you can use css3 gradient ... use the following code ..
.greenboard {background: #63856a;
background: -moz-radial-gradient(center, ellipse cover, #63856a 1%, #3c5a40 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(1%,#63856a), color-stop(100%,#3c5a40));
background: -webkit-radial-gradient(center, ellipse cover, #63856a 1%,#3c5a40 100%);
background: -o-radial-gradient(center, ellipse cover, #63856a 1%,#3c5a40 100%);
background: -ms-radial-gradient(center, ellipse cover, #63856a 1%,#3c5a40 100%);
background: radial-gradient(ellipse at center, #63856a 1%,#3c5a40 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#63856a', endColorstr='#3c5a40',GradientType=1 );
}
it is not perfect as an image because the image contains some texture effects ...
Krish source
share