from pygments.style import Style
from pygments.token import Name, Comment, String, Number, Operator, Whitespace
class CMakeTemplateStyle(Style):
"""
for more token names, see pygments/styles.default
"""
background_color = "#f8f8f8"
default_style = ""
styles = {
Whitespace: "#bbbbbb",
Comment: "italic #408080",
Operator: "#555555",
String: "#217A21",
Number: "#105030",
Name.Builtin: "#333333",
Name.Function: "#007020",
Name.Variable: "#1080B0",
Name.Tag: "#bb60d5",
Name.Constant: "#4070a0",
Name.Entity: "italic #70A020",
Name.Attribute: "#906060",
Name.Label: "#A0A000",
Name.Exception: "bold #FF0000",
}