I’m not 100% sure what you’re asking for but it sounds like you want some kind of dynamic global illumination. If so, there’s at least one product on the unity asset store for that. As a quick and cheap hack, you can just increase the ambient light level in the RenderSettings whenever you think it necessary.
Unity has a built-in lightmapper that works for most situations. The lightmapper is a tool that calculates the effect of lights bouncing off walls and lighting up the room. It is what makes the environments in modern games look so realistic. You can read about the lightmapper here:
The built-in lightmapper works great for most situations. The limitation is that it does not work with lights that move. If you really need to have moving lights that bounce off walls and light up the room dynamically, then you need to have a realtime global illumination shader like @MakeCodeNow was talking about. He was probably referring to the “RedLights” shader available on the asset store for $80:
I picked it up on sale and it worked pretty good. The only flaw I found was that the reflections do not show up reversed like they would in a mirror. I would go with the built-in lightmapper unless I really needed the realtime illumination.