A Light Gray Theme Color for Programmers

Light gray background theme color easy on your eyes

Here is a light gray theme color easy on your eyes. In fact white background color, or black background color themes have a hard contrast and inthe long run you eyes could be more tired.


Well, I created this is one and is my favourite, not necesarily yours. The gray background color is a warm gray, made with a red and green proportions which are considered warm colors.

Light Gray Theme Colors table

Function Hexa Display
Background #E7E3DB  
Background2 #D4D0C8  
Caret #FF00FF  
Foreground #000000  
Comment #32807C  
String #2A0AFF  
Constant #CD0000  
Built in constant #B8860B  
Variable #0000A0  
Keyword #7F0055  
Class name #AFEEEE  
Inherited class #A6E22E  
Function argument #FD971F  
Constant numeric #AE81FF  
namespace Acme\UserBundle\Model;
use Doctrine\ORM\EntityManager;
use Symfony\Component\Security\Core\Encoder\MessageDigestPasswordEncoder;


/**
 * UserService.php
 *
 * Business class to handle users operations
 *
 * @author     freedelta
 * @version    1.0 SVN: : date 2013-10-12
 */
class UserService
{
    protected $em;
    protected $mailer;
protected $sString;
protected $iNumber;

    public function __construct(EntityManager $em, Mailer $mailer)
    {
        $this->em = $em;
        $this->mailer = $mailer;
$this->myString = "Hello world";
    }
}