diff options
author | Brad King <brad.king@kitware.com> | 2019-01-10 12:55:38 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2019-01-10 12:55:46 (GMT) |
commit | 49b3ebf5f5b0500eea9f5e241c5d5024fa3a95fa (patch) | |
tree | 7da4061bbcfee02bb17b4347b8674d4f18b66e1a | |
parent | f2a78aeed94e9ccf76c1268e8ed934669a08d389 (diff) | |
parent | db89590f364c9c95628b367914188ca6a63b8eab (diff) | |
download | CMake-49b3ebf5f5b0500eea9f5e241c5d5024fa3a95fa.zip CMake-49b3ebf5f5b0500eea9f5e241c5d5024fa3a95fa.tar.gz CMake-49b3ebf5f5b0500eea9f5e241c5d5024fa3a95fa.tar.bz2 |
Merge topic 'better_sphinx_colors'
db89590f36 Help: CMakeTemplateStyle uses colors that better contrast.
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !2779
-rw-r--r-- | Utilities/Sphinx/colors.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Utilities/Sphinx/colors.py b/Utilities/Sphinx/colors.py index f98a483..dae0063 100644 --- a/Utilities/Sphinx/colors.py +++ b/Utilities/Sphinx/colors.py @@ -14,14 +14,14 @@ class CMakeTemplateStyle(Style): styles = { Whitespace: "#bbbbbb", Comment: "italic #408080", - Operator: "bold #000000", + Operator: "#555555", String: "#217A21", Number: "#105030", - Name.Builtin: "#400080", # anything lowercase - Name.Function: "bold #1010A0", # function + Name.Builtin: "#333333", # anything lowercase + Name.Function: "#007020", # function Name.Variable: "#1080B0", # <..> - Name.Tag: "#19177C", # ${..} - Name.Constant: "#6020E0", # uppercase only + Name.Tag: "#bb60d5", # ${..} + Name.Constant: "#4070a0", # uppercase only Name.Entity: "italic #70A020", # @..@ Name.Attribute: "#906060", # paths, URLs Name.Label: "#A0A000", # anything left over |