Skip to content

Commit 96f8d61

Browse files
authored
Add Ceylon language support (#602)
* add ceylon language * ceylon gradient and finer details * ceylon: add trailing newline for consistency
1 parent d1eb649 commit 96f8d61

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

resources/ceylon.ascii

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{1} @@
2+
{1} @@
3+
{3} @@@@@@@{1}@@@@@@@@@@@@@@ @@
4+
{0} @@@{3}@@@@@@@@@@{1}@@@@@@ /@@@@@@@@ @@@
5+
{0} @@@@@@{3}@@@@@@@@@@{1}@@@@ (@@@@ @@@@@ @@{2}@@
6+
{0} @@@@@@@@{3}@@@@@@@@@@@{1}@@@ \@@@@@@@@@@@@{2}@@@
7+
{0}@@@@@@@@@@@{3}@@@@@@@@@@@{1}@@@@@@@@@@@@@{2}@@@@
8+
{0}|/ @@@@@@@@@@{3}@@@@@@@@@@@@{1}@
9+
{0} @@@@@@@@@@@@{3}@@@@@@@@@@
10+
{0} @@@@@@@@@@@@@@{3}@@@@@@@ {4}@@
11+
{0} @@@@@@@ @@@@@@@ {4}@@@
12+
{0} @@@@@@ {4}@@ {0}@@@@@ {4}@@@@
13+
{0} @@@@ {4}@@@ {0}@@@@@ {4}@@@@@

src/info/langs/language.rs

+15
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,21 @@ define_languages! {
178178
{ AutoHotKey, Programming, "autohotkey.ascii", define_colors!( [Color::White, Color::Green] : [Color::TrueColor{r:255, g:255, b:255}, Color::TrueColor{r: 0x11, g: 0x98, b: 0x10}]) },
179179
{ Bash, Programming, "bash.ascii", define_colors!( [Color::White] ) },
180180
{ C, Programming, "c.ascii", define_colors!( [Color::Cyan, Color::Blue, Color::Blue, Color::White] : [Color::TrueColor{r:93, g:108, b:191}, Color::TrueColor{r:41, g:54, b:147}, Color::TrueColor{r:57, g:73, b:170}, Color::TrueColor{r:255, g:255, b:255}] ) },
181+
{
182+
Ceylon, Programming, "ceylon.ascii", define_colors!( [
183+
Color::Yellow,
184+
Color::Yellow,
185+
Color::Yellow,
186+
Color::Yellow,
187+
Color::Yellow
188+
] : [
189+
Color::TrueColor{ r:194, g:126, b:16 },
190+
Color::TrueColor{ r:221, g:161, b:46 },
191+
Color::TrueColor{ r:209, g:145, b:31 },
192+
Color::TrueColor{ r:204, g:139, b:24 },
193+
Color::TrueColor{ r:171, g:112, b:8 }
194+
] )
195+
},
181196
{ Clojure, Programming, "clojure.ascii", define_colors!( [Color::Cyan, Color::Green] ) },
182197
{ CMake, Programming, "cmake.ascii", define_colors!( [Color::Blue, Color::Green, Color::Red, Color::Black] ) },
183198
{ CoffeeScript, Programming, "coffeescript.ascii", define_colors!( [Color::Red] ) },

0 commit comments

Comments
 (0)