From 91ff0359033eb626a63c076e1e0b6af1b352a074 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 16 Oct 2018 14:40:38 +0200 Subject: [PATCH] css: highlight also diff subheadings. --- css/m-dark+doxygen.compiled.css | 1 + css/m-dark.compiled.css | 1 + css/pygments-dark.css | 1 + css/pygments-dark.py | 1 + 4 files changed, 4 insertions(+) diff --git a/css/m-dark+doxygen.compiled.css b/css/m-dark+doxygen.compiled.css index cc44c641..ff18c0af 100644 --- a/css/m-dark+doxygen.compiled.css +++ b/css/m-dark+doxygen.compiled.css @@ -2113,6 +2113,7 @@ article:last-child, article section:last-child { margin-bottom: 0; } .m-code .gh { color: #ffffff; font-weight: bold } .m-code .gi { color: #3bd267 } .m-code .gs { color: #e6e6e6; font-weight: bold } +.m-code .gu { color: #5b9dd9 } .m-code .kc { color: #ffffff; font-weight: bold } .m-code .kd { color: #ffffff; font-weight: bold } .m-code .kn { color: #ffffff; font-weight: bold } diff --git a/css/m-dark.compiled.css b/css/m-dark.compiled.css index d12ca69a..685f52f8 100644 --- a/css/m-dark.compiled.css +++ b/css/m-dark.compiled.css @@ -2113,6 +2113,7 @@ article:last-child, article section:last-child { margin-bottom: 0; } .m-code .gh { color: #ffffff; font-weight: bold } .m-code .gi { color: #3bd267 } .m-code .gs { color: #e6e6e6; font-weight: bold } +.m-code .gu { color: #5b9dd9 } .m-code .kc { color: #ffffff; font-weight: bold } .m-code .kd { color: #ffffff; font-weight: bold } .m-code .kn { color: #ffffff; font-weight: bold } diff --git a/css/pygments-dark.css b/css/pygments-dark.css index 7e0315bd..f4f0bca6 100644 --- a/css/pygments-dark.css +++ b/css/pygments-dark.css @@ -15,6 +15,7 @@ .m-code .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */ .m-code .gi { color: #3bd267 } /* Generic.Inserted */ .m-code .gs { color: #e6e6e6; font-weight: bold } /* Generic.Strong */ +.m-code .gu { color: #5b9dd9 } /* Generic.Subheading */ .m-code .kc { color: #ffffff; font-weight: bold } /* Keyword.Constant */ .m-code .kd { color: #ffffff; font-weight: bold } /* Keyword.Declaration */ .m-code .kn { color: #ffffff; font-weight: bold } /* Keyword.Namespace */ diff --git a/css/pygments-dark.py b/css/pygments-dark.py index 10e021fd..5cfe3540 100644 --- a/css/pygments-dark.py +++ b/css/pygments-dark.py @@ -59,6 +59,7 @@ class DarkStyle(Style): Generic.Strong: 'bold #e6e6e6', # Diffs + Generic.Subheading: '#5b9dd9', Generic.Inserted: '#3bd267', Generic.Deleted: '#cd3431' } -- 2.30.2