New IPython 5 prompt

Thorsten Kampe <[email protected]> Sun, 21 Aug 2016 12:45:43 +0200
Newsgroups gmane.comp.python.ipython.user
Message-ID <[email protected]>
Hello,

I'm at loss how to configure the new IPython 5 prompt. How can I 
replace my old prompt (see below) using the new 
`TerminalInteractiveShell.prompts_class`?

This is my old prompt:
"""
config = get_config()

PM  = config.PromptManager
PM.in_template  = '{color.LightCyan}>>> '
PM.in2_template = '{color.LightCyan}... '
PM.out_template = ''
"""

Thorsten