diff --git a/Twilight/colors/30;1 b/Twilight/colors/30;1 new file mode 100644 index 0000000..5c8746b --- /dev/null +++ b/Twilight/colors/30;1 @@ -0,0 +1,11 @@ + + + + + + + + .- + (WW W + ` + \ No newline at end of file diff --git a/Twilight/colors/31;22 b/Twilight/colors/31;22 new file mode 100644 index 0000000..6e45778 --- /dev/null +++ b/Twilight/colors/31;22 @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + \|/ + /|\ + + + + + + + + + + + + \ No newline at end of file diff --git a/Twilight/colors/34;22 b/Twilight/colors/34;22 new file mode 100644 index 0000000..8e42ec1 --- /dev/null +++ b/Twilight/colors/34;22 @@ -0,0 +1,29 @@ + + _ __ + __..--"" " + `. + ) `;. \ + /___/ j_ ) + ' ``::' | + | -,| + .| ( ' + ..-----, |' ', ' + .-` `, ._:7 + ,' \ | \ + .' :. | `"7 + / ,.--''>-' ' / + - | `. + | .' `-_./ + .' .' + | | + | '. + | . | + |/| | + ` ) '. + \ | + `. | + ` | + `-._| + + + \ No newline at end of file diff --git a/Twilight/colors/35;22 b/Twilight/colors/35;22 new file mode 100644 index 0000000..507d24a --- /dev/null +++ b/Twilight/colors/35;22 @@ -0,0 +1,29 @@ + + __ __ _ + / \ ;-. ,'/ + ( / \_ `.' / + | | ,' / \ + ( '. / ) | + \ __ /__' + \_ / -. ` + ( ) + . \ ``-. + ..::. |, \__/ + .:::'':::. :'. ______.-' + .::' ':: :._______ \ \ / + ./:' `.`.._ ( + :/:' / `._/ \ + :::' | | + ||| | | + ||| | | + ':|| / \ / \__/ + ||| .--' | /-,_______\ \ + ||| _/ / | |\ \ + '::. / / | | `--, \ + ||| | | | | / l + ||| _/| | | | ( | + ::|| | | | | \ | + `- | \ | \ `.___/ + \_______) \_______) + + \ No newline at end of file diff --git a/Twilight/colors/37;1 b/Twilight/colors/37;1 new file mode 100644 index 0000000..9b8735d --- /dev/null +++ b/Twilight/colors/37;1 @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + * + * + * + * + * + + + + + + + + + + \ No newline at end of file diff --git a/Twilight/colors/37;22 b/Twilight/colors/37;22 new file mode 100644 index 0000000..85d7e31 --- /dev/null +++ b/Twilight/colors/37;22 @@ -0,0 +1,10 @@ + + + + + + _ + / \ + ( | | | + \ | \ j + \_ _ _| diff --git a/Twilight/colors/twilight_unicorn.php b/Twilight/colors/twilight_unicorn.php new file mode 100755 index 0000000..7ce7117 --- /dev/null +++ b/Twilight/colors/twilight_unicorn.php @@ -0,0 +1,50 @@ +#!/usr/bin/php + $maxw ) + $maxw = $w; + } + $h = count($curr_file); + if ( $h > $maxh ) + $maxh = $h; + } +} + +$chars=array_fill(0,$maxh,array_fill(0,$maxw,null)); + +foreach ( $files as $color => $lines ) + for ( $i = 0; $i < $maxh; $i++ ) + { + for ( $j = 0, $l = strlen($lines[$i]); $j < $l; $j++ ) + { + if ( $lines[$i][$j] != ' ' ) + $chars[$i][$j] = array("color"=>$color,"char"=>$lines[$i][$j]); + } + } + +foreach($chars as $line) +{ + foreach($line as $char) + { + if ( is_null($char) ) + echo ' '; + else + echo "\x1b[$char[color]m$char[char]"; + } + echo "\n"; +} +echo "\x1b[0m\n"; +