diff options
author | Matth?us G. Chajdas <dev@anteru.net> | 2019-11-10 13:56:53 +0100 |
---|---|---|
committer | Matth?us G. Chajdas <dev@anteru.net> | 2019-11-10 13:56:53 +0100 |
commit | 1dd3124a9770e11b6684e5dd1e6bc15a0aa3bc67 (patch) | |
tree | 87a171383266dd1f64196589af081bc2f8e497c3 /pygments/styles/rrt.py | |
parent | f1c080e184dc1bbc36eaa7cd729ff3a499de568a (diff) | |
download | pygments-master.tar.gz |
Diffstat (limited to 'pygments/styles/rrt.py')
-rw-r--r-- | pygments/styles/rrt.py | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/pygments/styles/rrt.py b/pygments/styles/rrt.py deleted file mode 100644 index d61085e0..00000000 --- a/pygments/styles/rrt.py +++ /dev/null @@ -1,33 +0,0 @@ -# -*- coding: utf-8 -*- -""" - pygments.styles.rrt - ~~~~~~~~~~~~~~~~~~~ - - pygments "rrt" theme, based on Zap and Emacs defaults. - - :copyright: Copyright 2006-2019 by the Pygments team, see AUTHORS. - :license: BSD, see LICENSE for details. -""" - -from pygments.style import Style -from pygments.token import Comment, Name, Keyword, String - - -class RrtStyle(Style): - """ - Minimalistic "rrt" theme, based on Zap and Emacs defaults. - """ - - background_color = '#000000' - highlight_color = '#0000ff' - - styles = { - Comment: '#00ff00', - Name.Function: '#ffff00', - Name.Variable: '#eedd82', - Name.Constant: '#7fffd4', - Keyword: '#ff0000', - Comment.Preproc: '#e5e5e5', - String: '#87ceeb', - Keyword.Type: '#ee82ee', - } |