I have a program for a random flag generator. I have made a white "background" for a flag, and different symbols etc. which are white. The reason they're white is so I can color it using an RGB value. The problem is, I'm not sure how to do that(if it's even possible), so is it possible to blit an image and give it an RGB value in pygame? For example(this is probably incorrect, but the 2nd tuple in the last 2 blits represents RGB):
surface=pygame.display.set_mode((100,200))
background=pygame.image.load("Background.png")
flagback=pygame.image.load("back.png")
symbol=pygame.image.load("symbol.png")
surface.blit(background,(0,0))
surface.blit(flagback,(0,0),(100,0,0))
surface.blit(symbol,(0,0),(0,100,0))