Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.

Commit

Permalink
Fix typo in hex for class 'nv'
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolalamacchia committed Sep 28, 2013
1 parent d9a4b85 commit 57719aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pygments_style_solarized/dark.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class DarkStyle(Style):
Name.Namespace: '#b58900', # yellow ; class: 'nn'
Name.Other: '#839496', # base0 ; class: 'nx'
Name.Tag: '#859900', # green ; class: 'nt'
Name.Variable: '#cd4b16', # orange ; class: 'nv'
Name.Variable: '#cb4b16', # orange ; class: 'nv'
Name.Variable.Class: '#268bd2', # blue ; class: 'vc'
Name.Variable.Global: '#268bd2', # blue ; class: 'vg'
Name.Variable.Instance: '#268bd2', # blue ; class: 'vi'
Expand Down
2 changes: 1 addition & 1 deletion pygments_style_solarized/light.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class LightStyle(Style):
Name.Namespace: '#b58900', # yellow ; class: 'nn'
Name.Other: '#657b83', # base00 ; class: 'nx'
Name.Tag: '#859900', # green ; class: 'nt'
Name.Variable: '#cd4b16', # orange ; class: 'nv'
Name.Variable: '#cb4b16', # orange ; class: 'nv'
Name.Variable.Class: '#268bd2', # blue ; class: 'vc'
Name.Variable.Global: '#268bd2', # blue ; class: 'vg'
Name.Variable.Instance: '#268bd2', # blue ; class: 'vi'
Expand Down

0 comments on commit 57719aa

Please sign in to comment.