Sha256: 0544a391ffaa90973e2e149f59d70c04c97501e246b23466e469dd3da70af122

Contents?: true

Size: 1.32 KB

Versions: 17

Compression:

Stored size: 1.32 KB

Contents

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

    Simple black/white only style.

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

17 entries across 17 versions & 2 rubygems

Version Path
gitlab-pygments.rb-0.3.2 vendor/pygments-main/pygments/styles/bw.py
pygments.rb-0.3.7 vendor/pygments-main/pygments/styles/bw.py
pygments.rb-0.3.6 vendor/pygments-main/pygments/styles/bw.py
pygments.rb-0.3.5 vendor/pygments-main/pygments/styles/bw.py
pygments.rb-0.3.4 vendor/pygments-main/pygments/styles/bw.py
pygments.rb-0.3.3 vendor/pygments-main/pygments/styles/bw.py
pygments.rb-0.3.2 vendor/pygments-main/pygments/styles/bw.py
pygments.rb-0.3.1 vendor/pygments-main/pygments/styles/bw.py
pygments.rb-0.3.0 vendor/pygments-main/pygments/styles/bw.py
pygments.rb-0.2.13 vendor/pygments-main/pygments/styles/bw.py
pygments.rb-0.2.12 vendor/pygments-main/pygments/styles/bw.py
pygments.rb-0.2.11 vendor/pygments-main/pygments/styles/bw.py
pygments.rb-0.2.10 vendor/pygments-main/pygments/styles/bw.py
pygments.rb-0.2.9 vendor/pygments-main/pygments/styles/bw.py
pygments.rb-0.2.8 vendor/pygments-main/pygments/styles/bw.py
pygments.rb-0.2.7 vendor/pygments-main/pygments/styles/bw.py
pygments.rb-0.2.6 vendor/pygments-main/pygments/styles/bw.py