]> git.llucax.com Git - z.facultad/75.00/informe.git/blob - ext/pygsty.py
Agregar estilo para imprimir
[z.facultad/75.00/informe.git] / ext / pygsty.py
1
2 from pygments.token import *
3 from pygments.style import Style
4
5 class PrintStyle(Style):
6         background_color = '#FFF'
7         default_style = '#444'
8         styles = {
9                 Generic: '#444',
10                 Comment: 'bold italic #888',
11                 Keyword: 'bold #444',
12                 Keyword.Type: 'noinherit nobold italic #444',
13                 Keyword.Constant: 'noinherit nobold italic #444',
14                 Name: '#444',
15                 Name.Builtin: 'noinherit nobold italic #000',
16                 Number: '#000',
17                 Operator: '#000',
18                 Punctuation: '#000',
19                 String: 'italic #444 bg:#e6e6e6',
20         }
21