1# -*- coding: utf-8 -*-
2"""
3    pygments.styles.fruity
4    ~~~~~~~~~~~~~~~~~~~~~~
5
6    pygments version of my "fruity" vim theme.
7
8    :copyright: Copyright 2006-2020 by the Pygments team, see AUTHORS.
9    :license: BSD, see LICENSE for details.
10"""
11
12from pygments.style import Style
13from pygments.token import Token, Comment, Name, Keyword, \
14    Generic, Number, String, Whitespace
15
16class FruityStyle(Style):
17    """
18    Pygments version of the "native" vim theme.
19    """
20
21    background_color = '#111111'
22    highlight_color = '#333333'
23
24    styles = {
25        Whitespace:         '#888888',
26        Token:              '#ffffff',
27        Generic.Output:     '#444444 bg:#222222',
28        Keyword:            '#fb660a bold',
29        Keyword.Pseudo:     'nobold',
30        Number:             '#0086f7 bold',
31        Name.Tag:           '#fb660a bold',
32        Name.Variable:      '#fb660a',
33        Comment:            '#008800 bg:#0f140f italic',
34        Name.Attribute:     '#ff0086 bold',
35        String:             '#0086d2',
36        Name.Function:      '#ff0086 bold',
37        Generic.Heading:    '#ffffff bold',
38        Keyword.Type:       '#cdcaa9 bold',
39        Generic.Subheading: '#ffffff bold',
40        Name.Constant:      '#0086d2',
41        Comment.Preproc:    '#ff0007 bold'
42    }
43