Reproduced. The problem is more complicated than just the line ending with a \.
This is example works fine:
print(f"\
\
This should be string color");
This is a smaller example of the bug:
print(f"\
{}\
This should be string color");
This bug requires braces to be in the string preceding the trailing \. Weird.