Skip to content

Instantly share code, notes, and snippets.

@cstrahan
Created June 21, 2012 22:01
Show Gist options
  • Save cstrahan/2968836 to your computer and use it in GitHub Desktop.
Save cstrahan/2968836 to your computer and use it in GitHub Desktop.
GRB's vim color scheme converted to a pygments style.
# -*- coding: utf-8 -*-
"""
Grb256 Colorscheme
~~~~~~~~~~~~~~~~~~
Converted by Vim Colorscheme Converter
"""
from pygments.style import Style
from pygments.token import Token, Comment, Name, Keyword, Generic, Number, Operator, String
class Grb256Style(Style):
background_color = '#000000'
styles = {
Token: 'noinherit #f6f3e8 bg:#000000',
Comment.Preproc: 'noinherit #96CBFE',
Generic.Output: 'noinherit #070707 bg:#000000',
Keyword: 'noinherit #6699CC',
Name.Constant: 'noinherit #99CC99',
Keyword.Type: 'noinherit #FFFFB6',
Generic.Heading: 'noinherit #f6f3e8 bold',
Generic.Subheading: 'noinherit #f6f3e8 bold',
Name.Variable: 'noinherit #C6C5FE',
Generic.Traceback: 'noinherit #ffffff bg:#FF6C60 bold',
Name.Function: 'noinherit #FFD2A7',
Operator: 'noinherit #6699CC',
Operator.Word: 'noinherit #6699CC',
Number: 'noinherit #FF73FD',
Name.Tag: 'noinherit #6699CC',
String: 'noinherit #A8FF60',
Name.Entity: 'noinherit #E18964',
Generic.Error: 'noinherit #ffffff bg:#ff0000',
Name.Attribute: 'noinherit #FFD2A7',
Comment: 'noinherit #7C7C7C',
Generic.Inserted: 'bg:#90ee90 bold',
Generic.Deleted: 'bold',
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment