background and colors in css
body{ /* background color */ background: gray; /* background image */ background-image: url(imageurl); /* set color by it's name */ color: red; /* set color by rgb color */ color: rgb(168, 50, 157); /* set color by hex */ color: #92a8d1; }