This mod is great to enable colour concrete without enabling dectorio's painted tiles (which consume an assload of tile slots for stripes variants), but it doesn't use dectorio's crafting group.
Add this to data-updates.lua
-- Dectorio integration
-- If Dectorio crafting tab enabled and Dectorio colour concrete disabled move items to dectorio tab's flooring subgroup
if data.raw["item-group"]["dectorio"] and not data.raw["item-subgroup"]["flooring-painted-refined"] then
for _, color in pairs( colors ) do
local item = color.name.."-refined-concrete"
data.raw["item"][item].subgroup = "flooring-basic"
end
end