From: Martin Mares Date: Mon, 29 Oct 2007 09:10:31 +0000 (+0100) Subject: Switch to white background. X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=551a892a06a64c889a1c26dddeb0f68672fe7f3a;p=anim.git Switch to white background. --- diff --git a/AA/Gfx.pm b/AA/Gfx.pm index f55ed7e..829ec39 100644 --- a/AA/Gfx.pm +++ b/AA/Gfx.pm @@ -6,7 +6,7 @@ sub new($$) { my ($class, $id) = @_; my $b = AA::new($class, $id); $b->DefSet('d', 0); - $b->DefSet('color', [0, 0, 0]); + $b->DefSet('color', [1, 1, 1]); return $b; } @@ -29,7 +29,7 @@ sub new($$) { $t->DefSet('d', 10); $t->DefSet('x', 100); $t->DefSet('y', 100); - $t->DefSet('color', [1, 1, 1]); + $t->DefSet('color', [0, 0, 0]); $t->DefSet('size', 12); $t->DefSet('text', ''); return $t; diff --git a/AA/Graph.pm b/AA/Graph.pm index afd1d6c..bb2c72c 100644 --- a/AA/Graph.pm +++ b/AA/Graph.pm @@ -11,7 +11,7 @@ sub new($$) { $v->DefSet('gradient', 0.5); $v->DefSet('r', 30); $v->DefSet('rim', 2); - $v->DefSet('rim-color', [ 1, 1, 1 ]); + $v->DefSet('rim-color', [ 0.1, 0, 0.1 ]); $v->Define('label'); $v->DefSet('label-color', [ 1, 1, 1 ]); $v->DefSet('label-size', 1.5);