Last active
May 24, 2024 11:22
-
-
Save Julian-Nash/3003b0b75e07fbc382bc5ee0778a2472 to your computer and use it in GitHub Desktop.
vs code dark style pygments class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Version 1 - Not tested | |
from pygments.style import Style | |
from pygments.token import (Keyword, Name, Comment, String, | |
Error, Number, Operator, Generic) | |
class DarkStyle(Style): | |
default_style = "" | |
styles = { | |
Comment: '#608b4e', | |
Keyword: '#005', | |
Name: '#C586C0', | |
Name.Function: '#569cd6', | |
Name.Class: '#4EC9B0', | |
String: '#CE9178', | |
Error: '#d16969', | |
Number: '#DCDCAA', | |
Operator: '#C586C0', | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment