Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Changes.textile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ h2. Changes in 1.1.1
* Ruby scanner: Accept squiggly heredoc @<<~@ (Ruby 2.3)
* Diff scanner: Prevent running out of regexp stack.
* HTML encoder: You can keep tabs intact now by setting @tab_width: false@.
* Alpha style: Tweaked colors for @:function@ group with @:content@.

h2. Changes in 1.1

Expand Down
3 changes: 2 additions & 1 deletion lib/coderay/styles/alpha.rb
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ class Alpha < Style
.exception { color:#C00; font-weight:bold }
.float { color:#60E }
.function { color:#06B; font-weight:bold }
.function .delimiter { color:#024; font-weight:bold }
.function .delimiter { color:#059 }
.function .content { color:#037 }
.global-variable { color:#d70 }
.hex { color:#02b }
.id { color:#33D; font-weight:bold }
Expand Down