blob: b2cfba9fb3e4c9d27ba7b85a2dc6744a82114a70 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
"""
pygments.styles.staroffice
~~~~~~~~~~~~~~~~~~~~~~~~~~
Style similar to StarOffice style, also in OpenOffice and LibreOffice.
:copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
from pygments.style import Style
from pygments.token import Comment, Error, Literal, Name, Token
__all__ = ['StarofficeStyle']
class StarofficeStyle(Style):
"""
Style similar to StarOffice style, also in OpenOffice and LibreOffice.
"""
name = 'staroffice'
styles = {
Token: '#000080', # Blue
Comment: '#696969', # DimGray
Error: '#800000', # Maroon
Literal: '#EE0000', # Red
Name: '#008000', # Green
}
|