Pictorico varies the shade of default background blue on the thumbnails, but you should catch most of them by adding this custom CSS:
.blog .site-content .hentry .entry-thumbnail,
.archive .site-content .hentry .entry-thumbnail,
.search .site-content .hentry .entry-thumbnail,
.blog .site-content .hentry:nth-of-type(2n) .entry-thumbnail,
.archive .site-content .hentry:nth-of-type(2n) .entry-thumbnail,
.search .site-content .hentry:nth-of-type(2n) .entry-thumbnail,
.blog .site-content .hentry:nth-of-type(5n) .entry-thumbnail,
.archive .site-content .hentry:nth-of-type(5n) .entry-thumbnail,
.search .site-content .hentry:nth-of-type(5n) .entry-thumbnail,
.blog .site-content .hentry:nth-of-type(4n) .entry-thumbnail,
.archive .site-content .hentry:nth-of-type(4n) .entry-thumbnail,
.search .site-content .hentry:nth-of-type(4n) .entry-thumbnail,
.blog .site-content .hentry:nth-of-type(3n) .entry-thumbnail,
.archive .site-content .hentry:nth-of-type(3n) .entry-thumbnail,
.search .site-content .hentry:nth-of-type(3n) .entry-thumbnail {
background: #bb00bb;
}
Don’t edit the theme files directly, otherwise your changes will be overwritten whenever the theme is updated.
An easy way to add custom CSS is to install the Jetpack plugin and activate the Custom CSS module. You’ll then add your custom CSS in the new stylesheet editor that’ll appear in your dashboard, under Appearance > Edit CSS.
As alternatives, you could either install a standalone custom CSS plugin, or create a child theme.