Change color of repeated textures

I’m repeating one texture 12 times on the skinned mesh in threejs I want to change the color to one of repeated texture Is that possible?

Wdym precisely by “change color” ?

  1. You have to clone the material - so that it’s unique and not reused by other meshes.
  2. You can then tint the colour of the cloned material by applying .color (equivalent of “Multiply” effect in Photoshop) or .emissive (equivalent of “Add” effect in Photoshop.)

Thank you, I’ll try that