summaryrefslogtreecommitdiff
path: root/pygments
diff options
context:
space:
mode:
authorMatth?us G. Chajdas <dev@anteru.net>2019-05-18 14:03:24 +0200
committerMatth?us G. Chajdas <dev@anteru.net>2019-05-18 14:03:24 +0200
commit433b39cc68aeb4a66452ccc9c7ae366e67b466b0 (patch)
tree00b993dc8e8fa49925fdad9603d8fd8341a51a29 /pygments
parent1a2be551606e6ac32b4bfa0cb45e442aac9275e9 (diff)
downloadpygments-git-433b39cc68aeb4a66452ccc9c7ae366e67b466b0.tar.gz
Don't use bold for bright text in the console formatter (fixes #1480.)
Diffstat (limited to 'pygments')
-rw-r--r--pygments/console.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/console.py b/pygments/console.py
index e61744ce..e9f30ad8 100644
--- a/pygments/console.py
+++ b/pygments/console.py
@@ -30,7 +30,7 @@ light_colors = ["brightblack", "brightred", "brightgreen", "brightyellow", "brig
x = 30
for d, l in zip(dark_colors, light_colors):
codes[d] = esc + "%im" % x
- codes[l] = esc + "%i;01m" % x
+ codes[l] = esc + "%im" % (60 + x)
x += 1
del d, l, x