How to get grid background color for web-page?

690 Views Asked by At

I want to have a grid like background color for the header section like in this website: http://www.grantstreetstation.com/

Here is the link of the image showing the color: Link of the image

2

There are 2 best solutions below

0
On

That is not a color but an background image. Use the Google Chrome DevTools to inspect the CSS. There you will find this:

body {
  background: #f6f2e6 url(imgs/bg.png) left top repeat;
}

This is the image that will be repeated to create this structure:

http://www.grantstreetstation.com/imgs/bg.png

0
On

Background of this website is a small image who repeats itself.

Image link is IMAGE

if you mean the color it is: #EAE5D2 and the stripes are : #DED9C6