Sha256: 97b32e1f30c1c9e2eefd8dd06127d6c0234c360bb5acfcb25c328b636d2b1c25

Contents?: true

Size: 727 Bytes

Versions: 4

Compression:

Stored size: 727 Bytes

Contents

"""
    pygments.styles.abap
    ~~~~~~~~~~~~~~~~~~~~

    ABAP workbench like style.

    :copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS.
    :license: BSD, see LICENSE for details.
"""

from pygments.style import Style
from pygments.token import Keyword, Name, Comment, String, Error, \
    Number, Operator


class AbapStyle(Style):
    default_style = ""
    styles = {
        Comment:                'italic #888',
        Comment.Special:        '#888',
        Keyword:                '#00f',
        Operator.Word:          '#00f',
        Name:                   '#000',
        Number:                 '#3af',
        String:                 '#5a2',

        Error:                  '#F00',
    }

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
pygments.rb-2.3.1 vendor/pygments-main/pygments/styles/abap.py
pygments.rb-2.3.0 vendor/pygments-main/pygments/styles/abap.py
pygments.rb-2.2.0 vendor/pygments-main/pygments/styles/abap.py
pygments.rb-2.1.0 vendor/pygments-main/pygments/styles/abap.py