Use a single cell that you toggle from TRUE to FALSE to Enable / Disable CF - in this example, cell F2 - and use the Formula option of CF, with formulas like these for the "Country" column (assuming your 'final effect' table starts in G20:I20):
=AND($F$2, LEFT(G20,1)="C") => Blue Fill
=AND($F$2, LEFT(G20,1)="U") => Red Fill
and like these for the Region column:
=AND($F$2, LEFT(H20,1)="C") => Medium Blue Fill
=AND($F$2, LEFT(H20,1)="U") => Medium Red Fill
and like these for the City column:
=AND($F$2, LEFT(I20,1)="C") => Light Blue Fill
=AND($F$2, LEFT(I20,1)="U") => Light Red Fill
Then just change the value in F2 to turn the CF on or off.