diff options
Diffstat (limited to 'scripts/vim2pygments.py')
-rw-r--r-- | scripts/vim2pygments.py | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/scripts/vim2pygments.py b/scripts/vim2pygments.py index 42cd151d..09391beb 100644 --- a/scripts/vim2pygments.py +++ b/scripts/vim2pygments.py @@ -24,22 +24,22 @@ SCRIPT_VERSION = '0.1' COLORS = { # Numeric Colors - '0': '000000', - '1': 'c00000', - '2': '008000', - '3': '808000', - '4': '0000c0', - '5': 'c000c0', - '6': '008080', - '7': 'c0c0c0', - '8': '808080', - '9': 'ff6060', - '10': '00ff00', - '11': 'ffff00', - '12': '8080ff', - '13': 'ff40ff', - '14': '00ffff', - '15': 'ffffff', + '0': '#000000', + '1': '#c00000', + '2': '#008000', + '3': '#808000', + '4': '#0000c0', + '5': '#c000c0', + '6': '#008080', + '7': '#c0c0c0', + '8': '#808080', + '9': '#ff6060', + '10': '#00ff00', + '11': '#ffff00', + '12': '#8080ff', + '13': '#ff40ff', + '14': '#00ffff', + '15': '#ffffff', # Named Colors 'alice': '#f0f8ff', 'aliceblue': '#f0f8ff', |