@@ -215,7 +215,22 @@ define_languages! {
215
215
{ Python , "python.ascii" , "Python" , define_colors!( [ Color :: Blue , Color :: Yellow ] ) } ,
216
216
{ R , "r.ascii" , "R" , define_colors!( [ Color :: White , Color :: Blue ] ) } ,
217
217
{ Racket , "racket.ascii" , "Racket" , define_colors!( [ Color :: Red , Color :: White , Color :: Blue ] ) } ,
218
- { Perl6 , "raku.ascii" , "Raku" , define_colors!( [ Color :: Black , Color :: Blue , Color :: Red , Color :: Yellow , Color :: White , Color :: Green ] ) , "raku" } ,
218
+ {
219
+ Perl6 , "raku.ascii" , "Raku" , define_colors!( [
220
+ Color :: Blue ,
221
+ Color :: Red ,
222
+ Color :: Yellow ,
223
+ Color :: White ,
224
+ Color :: Green
225
+ ] : [
226
+ Color :: TrueColor { r: 91 , g: 0 , b: 253 } ,
227
+ Color :: TrueColor { r: 255 , g: 0 , b: 94 } ,
228
+ Color :: TrueColor { r: 243 , g: 255 , b: 39 } ,
229
+ Color :: TrueColor { r: 255 , g: 255 , b: 255 } ,
230
+ Color :: TrueColor { r: 0 , g: 255 , b: 57 }
231
+ ] ) ,
232
+ "raku"
233
+ } ,
219
234
{ Ruby , "ruby.ascii" , "Ruby" , define_colors!( [ Color :: Magenta ] ) } ,
220
235
{ Rust , "rust.ascii" , "Rust" , define_colors!( [ Color :: Red , Color :: White ] : [ Color :: TrueColor { r: 228 , g: 55 , b: 23 } , Color :: TrueColor { r: 255 , g: 255 , b: 255 } ] ) } ,
221
236
{ Scala , "scala.ascii" , "Scala" , define_colors!( [ Color :: Red , Color :: Red ] : [ Color :: TrueColor { r: 223 , g: 63 , b: 61 } , Color :: TrueColor { r: 127 , g: 12 , b: 29 } ] ) } ,
0 commit comments