tango.py 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. # -*- coding: utf-8 -*-
  2. """
  3. pygments.styles.tango
  4. ~~~~~~~~~~~~~~~~~~~~~
  5. The Crunchy default Style inspired from the color palette from
  6. the Tango Icon Theme Guidelines.
  7. http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
  8. Butter: #fce94f #edd400 #c4a000
  9. Orange: #fcaf3e #f57900 #ce5c00
  10. Chocolate: #e9b96e #c17d11 #8f5902
  11. Chameleon: #8ae234 #73d216 #4e9a06
  12. Sky Blue: #729fcf #3465a4 #204a87
  13. Plum: #ad7fa8 #75507b #5c35cc
  14. Scarlet Red:#ef2929 #cc0000 #a40000
  15. Aluminium: #eeeeec #d3d7cf #babdb6
  16. #888a85 #555753 #2e3436
  17. Not all of the above colors are used; other colors added:
  18. very light grey: #f8f8f8 (for background)
  19. This style can be used as a template as it includes all the known
  20. Token types, unlike most (if not all) of the styles included in the
  21. Pygments distribution.
  22. However, since Crunchy is intended to be used by beginners, we have strived
  23. to create a style that gloss over subtle distinctions between different
  24. categories.
  25. Taking Python for example, comments (Comment.*) and docstrings (String.Doc)
  26. have been chosen to have the same style. Similarly, keywords (Keyword.*),
  27. and Operator.Word (and, or, in) have been assigned the same style.
  28. :copyright: Copyright 2006-2019 by the Pygments team, see AUTHORS.
  29. :license: BSD, see LICENSE for details.
  30. """
  31. from pygments.style import Style
  32. from pygments.token import Keyword, Name, Comment, String, Error, \
  33. Number, Operator, Generic, Whitespace, Punctuation, Other, Literal
  34. class TangoStyle(Style):
  35. """
  36. The Crunchy default Style inspired from the color palette from
  37. the Tango Icon Theme Guidelines.
  38. """
  39. # work in progress...
  40. background_color = "#f8f8f8"
  41. default_style = ""
  42. styles = {
  43. # No corresponding class for the following:
  44. #Text: "", # class: ''
  45. Whitespace: "underline #f8f8f8", # class: 'w'
  46. Error: "#a40000 border:#ef2929", # class: 'err'
  47. Other: "#000000", # class 'x'
  48. Comment: "italic #8f5902", # class: 'c'
  49. Comment.Multiline: "italic #8f5902", # class: 'cm'
  50. Comment.Preproc: "italic #8f5902", # class: 'cp'
  51. Comment.Single: "italic #8f5902", # class: 'c1'
  52. Comment.Special: "italic #8f5902", # class: 'cs'
  53. Keyword: "bold #204a87", # class: 'k'
  54. Keyword.Constant: "bold #204a87", # class: 'kc'
  55. Keyword.Declaration: "bold #204a87", # class: 'kd'
  56. Keyword.Namespace: "bold #204a87", # class: 'kn'
  57. Keyword.Pseudo: "bold #204a87", # class: 'kp'
  58. Keyword.Reserved: "bold #204a87", # class: 'kr'
  59. Keyword.Type: "bold #204a87", # class: 'kt'
  60. Operator: "bold #ce5c00", # class: 'o'
  61. Operator.Word: "bold #204a87", # class: 'ow' - like keywords
  62. Punctuation: "bold #000000", # class: 'p'
  63. # because special names such as Name.Class, Name.Function, etc.
  64. # are not recognized as such later in the parsing, we choose them
  65. # to look the same as ordinary variables.
  66. Name: "#000000", # class: 'n'
  67. Name.Attribute: "#c4a000", # class: 'na' - to be revised
  68. Name.Builtin: "#204a87", # class: 'nb'
  69. Name.Builtin.Pseudo: "#3465a4", # class: 'bp'
  70. Name.Class: "#000000", # class: 'nc' - to be revised
  71. Name.Constant: "#000000", # class: 'no' - to be revised
  72. Name.Decorator: "bold #5c35cc", # class: 'nd' - to be revised
  73. Name.Entity: "#ce5c00", # class: 'ni'
  74. Name.Exception: "bold #cc0000", # class: 'ne'
  75. Name.Function: "#000000", # class: 'nf'
  76. Name.Property: "#000000", # class: 'py'
  77. Name.Label: "#f57900", # class: 'nl'
  78. Name.Namespace: "#000000", # class: 'nn' - to be revised
  79. Name.Other: "#000000", # class: 'nx'
  80. Name.Tag: "bold #204a87", # class: 'nt' - like a keyword
  81. Name.Variable: "#000000", # class: 'nv' - to be revised
  82. Name.Variable.Class: "#000000", # class: 'vc' - to be revised
  83. Name.Variable.Global: "#000000", # class: 'vg' - to be revised
  84. Name.Variable.Instance: "#000000", # class: 'vi' - to be revised
  85. # since the tango light blue does not show up well in text, we choose
  86. # a pure blue instead.
  87. Number: "bold #0000cf", # class: 'm'
  88. Number.Float: "bold #0000cf", # class: 'mf'
  89. Number.Hex: "bold #0000cf", # class: 'mh'
  90. Number.Integer: "bold #0000cf", # class: 'mi'
  91. Number.Integer.Long: "bold #0000cf", # class: 'il'
  92. Number.Oct: "bold #0000cf", # class: 'mo'
  93. Literal: "#000000", # class: 'l'
  94. Literal.Date: "#000000", # class: 'ld'
  95. String: "#4e9a06", # class: 's'
  96. String.Backtick: "#4e9a06", # class: 'sb'
  97. String.Char: "#4e9a06", # class: 'sc'
  98. String.Doc: "italic #8f5902", # class: 'sd' - like a comment
  99. String.Double: "#4e9a06", # class: 's2'
  100. String.Escape: "#4e9a06", # class: 'se'
  101. String.Heredoc: "#4e9a06", # class: 'sh'
  102. String.Interpol: "#4e9a06", # class: 'si'
  103. String.Other: "#4e9a06", # class: 'sx'
  104. String.Regex: "#4e9a06", # class: 'sr'
  105. String.Single: "#4e9a06", # class: 's1'
  106. String.Symbol: "#4e9a06", # class: 'ss'
  107. Generic: "#000000", # class: 'g'
  108. Generic.Deleted: "#a40000", # class: 'gd'
  109. Generic.Emph: "italic #000000", # class: 'ge'
  110. Generic.Error: "#ef2929", # class: 'gr'
  111. Generic.Heading: "bold #000080", # class: 'gh'
  112. Generic.Inserted: "#00A000", # class: 'gi'
  113. Generic.Output: "italic #000000", # class: 'go'
  114. Generic.Prompt: "#8f5902", # class: 'gp'
  115. Generic.Strong: "bold #000000", # class: 'gs'
  116. Generic.Subheading: "bold #800080", # class: 'gu'
  117. Generic.Traceback: "bold #a40000", # class: 'gt'
  118. }