base adds a set of color refined concrete tiles using a tint on the base refined concrete; see https://github.com/wube/factorio-data/blob/d88ce3336a31bd5b18e97eaffc796bab7afaeb0b/base/prototypes/tile/tiles.lua#L3927
It'd be great to have them supported too. Sadly, because they are created before y'all loaded, gonna have to either list them manually, or loop and match. This worked for me:
for name, tile in pairs(data.raw["tile"]) do
if name:find("refined%-concrete") then
tile.variants.material_background.picture = "__Concretexture__/grid/concrete.png"
tile.variants.material_background.hr_version.picture = "__Concretexture__/grid/hr-concrete.png"
end
end
note: gotta escape the -
because find is a lua pattern, and patterns treat -
as a meta-character. -_-