Skip to content

Commit

Permalink
Merge pull request #2526 from rrthomas/master
Browse files Browse the repository at this point in the history
rrt style: add Number color
  • Loading branch information
Anteru committed Oct 8, 2023
2 parents 51acb69 + ac424e8 commit 669dcf1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pygments/styles/rrt.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"""

from pygments.style import Style
from pygments.token import Token, Comment, Name, Keyword, String
from pygments.token import Token, Comment, Name, Keyword, String, Number


__all__ = ['RrtStyle']
Expand All @@ -21,7 +21,7 @@ class RrtStyle(Style):
"""

name = 'rrt'

background_color = '#000000'
highlight_color = '#0000ff'

Expand All @@ -35,4 +35,5 @@ class RrtStyle(Style):
Comment.Preproc: '#e5e5e5',
String: '#87ceeb',
Keyword.Type: '#ee82ee',
Number: '#ff00ff',
}

0 comments on commit 669dcf1

Please sign in to comment.