Sha256: a6fb326bc68a31502455e02c3ae9936a64ec6e7a5349a18d9f7014ad891b37fa

Contents?: true

Size: 705 Bytes

Versions: 2

Compression:

Stored size: 705 Bytes

Contents

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

    ABAP workbench like style.

    :copyright: Copyright 2006-2023 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):

    styles = {
        Comment:                'italic #888',
        Comment.Special:        '#888',
        Keyword:                '#00f',
        Operator.Word:          '#00f',
        Name:                   '#000',
        Number:                 '#3af',
        String:                 '#5a2',

        Error:                  '#F00',
    }

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
pygments.rb-2.4.1 vendor/pygments-main/pygments/styles/abap.py
pygments.rb-2.4.0 vendor/pygments-main/pygments/styles/abap.py