We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 39bad80 + 816bd71 commit 827d0fbCopy full SHA for 827d0fb
adoc/config/rouge/lib/rouge/themes/sycl_spec.rb
@@ -31,6 +31,12 @@ class SYCLspec < Github
31
style Comment, :fg => '#9acd32'
32
style Comment::Multiline, :fg => '#9acd32'
33
style Comment::Single, :fg => '#9acd32'
34
+ # Give preprocessing statements a different color from comments.
35
+ # DarkOrchid3 (#9a32cd) is close to what Visual Studio Code uses in its
36
+ # Light Modern theme. This is the same color we use for sycl_data_types
37
+ # (above), but those are very uncommon in our code listings now.
38
+ style Comment::Preproc, :fg => '#9a32cd'
39
+ style Comment::PreprocFile, :fg => '#9a32cd'
40
# Use a clearer white background
41
style Text, :bg => '#ffffff'
42
0 commit comments