Skip to content

Instantly share code, notes, and snippets.

@honza
Created February 25, 2011 19:25
Show Gist options
  • Select an option

  • Save honza/844339 to your computer and use it in GitHub Desktop.

Select an option

Save honza/844339 to your computer and use it in GitHub Desktop.
IdleFingers Pygments Theme
# -*- coding: utf-8 -*-
"""
Idle-Fingers Colorscheme
~~~~~~~~~~~~~~~~~~~~~~~~
Converted by Vim Colorscheme Converter
"""
from pygments.style import Style
from pygments.token import Token, Comment, Name, Keyword, Generic, Number, Operator, String
class Idle-FingersStyle(Style):
background_color = '#323232'
styles = {
Token: 'noinherit #ffffff bg:#323232'
Comment.Preproc: 'noinherit #cc7833'
Generic.Output: 'noinherit #404040 bg:#353637'
Name.Constant: 'noinherit #6c99bb'
Keyword.Type: 'noinherit #ffc66d'
Operator.Word: 'noinherit #cc7833'
Number.Float: 'noinherit #6c99bb'
Generic.Traceback: 'noinherit #ffffff bg:#ff0000'
Name.Function: 'noinherit #ffc66d'
Name.Label: 'noinherit #a5c261'
Number: 'noinherit #6c99bb'
Keyword: 'noinherit #cc7833'
Name.Tag: 'noinherit #cc7833'
String: 'noinherit #a5c261'
Name.Entity: 'noinherit #ffffff'
Name.Attribute: 'noinherit #ffc66d'
Comment: '#bc9458 italic'
Name.Variable: 'noinherit'
Generic.Heading: '#ffffff bold'
Generic.Subheading: '#ffffff bold'
Generic.Emph: 'underline'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment