diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-10-29 21:29:44 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-10-29 21:29:44 +0200 |
commit | 2778aeb7f5505e67b3a8e30f4ad1f3f665d33ce3 (patch) | |
tree | 30ebe657e74f0c0d5696e0c8eefda067bd370c4c | |
parent | a60a34fc9ae410560b22728b8d5470b678cea635 (diff) |
change default color (red -> orange-ish)
-rw-r--r-- | cgi/index.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cgi/index.pl b/cgi/index.pl index 153869f..33733fb 100644 --- a/cgi/index.pl +++ b/cgi/index.pl @@ -77,7 +77,7 @@ sub render_image { my $dt_now = DateTime->now(time_zone => 'Europe/Berlin'); - my $color = $self->param('color') || '255,0,0'; + my $color = $self->param('color') || '255,150,0'; my $width = $self->param('width') || 180; my $height = $self->param('height') || 50; |