Skip to content

Commit a3455d4

Browse files
authored
add sql support (#491)
* add sql support * add colored text to sql logo
1 parent c3af87a commit a3455d4

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

Diff for: resources/sql.ascii

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{0} _..------.._
2+
{0}.-~ ~-.
3+
{0}| |
4+
{0}|"-..________..-"|
5+
{0}| | {1} ____ ___ _
6+
{0}| | {1}/ ___| / _ \| |
7+
{0}|"-..________..-"| {1}\___ \| | | | |
8+
{0}| | {1} ___) | |_| | |___
9+
{0}| | {1}|____/ \__\_|_____|
10+
{0}|"-..________..-"|
11+
{0}| |
12+
{0}| |
13+
{0} "-..________..-"

Diff for: src/info/language.rs

+1
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@ define_languages! {
236236
{ Scala, "scala.ascii", define_colors!( [Color::Red, Color::Red] : [Color::TrueColor{ r:223, g:63 ,b:61}, Color::TrueColor{ r:127, g:12 ,b:29} ] ) },
237237
{ Scheme, "scheme.ascii", define_colors!( [Color::White] : [Color::TrueColor{r: 85, g:85, b:85}] ) },
238238
{ Sh, "shell.ascii", define_colors!( [Color::Green] ), "shell" },
239+
{ Sql, "sql.ascii", define_colors!( [Color::Cyan, Color::Yellow] ) },
239240
{ Svelte, "svelte.ascii", define_colors!( [Color::Red, Color::White] : [Color::TrueColor{ r: 255, g: 60, b: 0 }, Color::TrueColor{ r: 255, g: 255, b: 255 }] ) },
240241
{
241242
Swift, "swift.ascii", define_colors!( [

0 commit comments

Comments
 (0)