Sha256: 51664e5063493219349f8724b04ff0fe2fd93301cab297fbc94342c3a92d44bc

Contents?: true

Size: 1.32 KB

Versions: 13

Compression:

Stored size: 1.32 KB

Contents

# -*- coding: utf-8 -*-
"""
    pygments.styles.bw
    ~~~~~~~~~~~~~~~~~~

    Simple black/white only style.

    :copyright: Copyright 2006-2013 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, \
     Operator, Generic


class BlackWhiteStyle(Style):

    background_color = "#ffffff"
    default_style = ""

    styles = {
        Comment:                   "italic",
        Comment.Preproc:           "noitalic",

        Keyword:                   "bold",
        Keyword.Pseudo:            "nobold",
        Keyword.Type:              "nobold",

        Operator.Word:             "bold",

        Name.Class:                "bold",
        Name.Namespace:            "bold",
        Name.Exception:            "bold",
        Name.Entity:               "bold",
        Name.Tag:                  "bold",

        String:                    "italic",
        String.Interpol:           "bold",
        String.Escape:             "bold",

        Generic.Heading:           "bold",
        Generic.Subheading:        "bold",
        Generic.Emph:              "italic",
        Generic.Strong:            "bold",
        Generic.Prompt:            "bold",

        Error:                     "border:#FF0000"
    }

Version data entries

13 entries across 13 versions & 4 rubygems

Version Path
mortar-pygments.rb-0.5.7 vendor/pygments-main/pygments/styles/bw.py
mortar-pygments.rb-0.5.6 vendor/pygments-main/pygments/styles/bw.py
mortar-pygments.rb-0.5.5 vendor/pygments-main/pygments/styles/bw.py
pygments.rb-jruby-0.5.4.2 vendor/pygments-main/pygments/styles/bw.py
pygments.rb-jruby-0.5.4.1 vendor/pygments-main/pygments/styles/bw.py
pygments.rb-jruby-0.5.4 vendor/pygments-main/pygments/styles/bw.py
gitlab-pygments.rb-0.5.4 vendor/pygments-main/pygments/styles/bw.py
pygments.rb-0.5.4 vendor/pygments-main/pygments/styles/bw.py
pygments.rb-0.5.2 vendor/pygments-main/pygments/styles/bw.py
pygments.rb-0.5.1 vendor/pygments-main/pygments/styles/bw.py
pygments.rb-0.5.0 vendor/pygments-main/pygments/styles/bw.py
pygments.rb-0.4.2 vendor/pygments-main/pygments/styles/bw.py
pygments.rb-0.4.1 vendor/pygments-main/pygments/styles/bw.py