This will do it
In[1]:= myData = {{"Silicon Image", "address-1", "address-2",
"address-3"}, {"a version", "value-1", "value-2",
"value-3"}, {"another version", "value-4", "value-5", "value-6"}};
In[6]:= Clear[stephensTab]
stephensTab[m_?MatrixQ] := Module[{mLoc = m},
Grid[mLoc, Alignment -> Center, Spacings -> {2, 1}, Frame -> All,
ItemStyle -> "Text",
Background -> {{LightBlue, None}, {LightYellow, None}}]
]
In[8]:= stephensTab[myData]