From 28a91b7d5101ebd3646f2ab37416eeed8f58c23e Mon Sep 17 00:00:00 2001 From: Nicolas Vion Date: Sun, 2 Nov 2008 19:13:47 +0000 Subject: [PATCH] * Remove white and yellow colors for letters --- caca-php/examples/www/figlet.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caca-php/examples/www/figlet.php b/caca-php/examples/www/figlet.php index edba672..07ee30a 100644 --- a/caca-php/examples/www/figlet.php +++ b/caca-php/examples/www/figlet.php @@ -44,7 +44,7 @@ function show_figlet($str, $font) { $chars = unistr_to_ords($str); $color = 0; foreach ($chars as $c) { - caca_set_color_ansi($cv, 1 + (($color += 4) % 15), CACA_WHITE); + caca_set_color_ansi($cv, 1 + (($color += 1) % 13), CACA_WHITE); caca_put_figchar($cv, $c); }