You are given an undirected graph represented as an adjacency list. Some nodes in the graph have already been assigned a color (either 'red' or 'blue'), while other nodes are uncolored. Implement a function that determines if it is possible to assign colors to all uncolored nodes such that no two adjacent nodes share the same color.
If a valid coloring exists, return a dictionary (or map) that assigns a color ('red' or 'blue') to every node (including those pre-assigned). If no valid coloring exists, return an appropriate indicator (e.g., null or an empty dictionary).
Input:
Constraints:
Implement your solution in the programming language of your choice. Make sure to handle all edge cases and include comments in your code to explain your approach.