1# -*- coding: utf-8 -*-
2"""
3    pygments.styles.igor
4    ~~~~~~~~~~~~~~~~~~~~
5
6    Igor Pro default style.
7
8    :copyright: Copyright 2006-2020 by the Pygments team, see AUTHORS.
9    :license: BSD, see LICENSE for details.
10"""
11
12from pygments.style import Style
13from pygments.token import Keyword, Name, Comment, String
14
15
16class IgorStyle(Style):
17    """
18    Pygments version of the official colors for Igor Pro procedures.
19    """
20    default_style = ""
21
22    styles = {
23        Comment:                'italic #FF0000',
24        Keyword:                '#0000FF',
25        Name.Function:          '#C34E00',
26        Name.Decorator:         '#CC00A3',
27        Name.Class:             '#007575',
28        String:                 '#009C00'
29    }
30