| Image-TextMode documentation | Contained in the Image-TextMode distribution. |
Image::TextMode::Palette::VGA - 16-color VGA palette
This is the default VGA palette.
Brian Cassidy <bricas@cpan.org>
Copyright 2008-2011 by Brian Cassidy
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Image-TextMode documentation | Contained in the Image-TextMode distribution. |
package Image::TextMode::Palette::VGA; use Moose; extends 'Image::TextMode::Palette'; has '+colors' => ( default => sub { [ [ 0x00, 0x00, 0x00 ], [ 0x00, 0x00, 0xaa ], [ 0x00, 0xaa, 0x00 ], [ 0x00, 0xaa, 0xaa ], [ 0xaa, 0x00, 0x00 ], [ 0xaa, 0x00, 0xaa ], [ 0xaa, 0x55, 0x00 ], [ 0xaa, 0xaa, 0xaa ], [ 0x55, 0x55, 0x55 ], [ 0x55, 0x55, 0xff ], [ 0x55, 0xff, 0x55 ], [ 0x55, 0xff, 0xff ], [ 0xff, 0x55, 0x55 ], [ 0xff, 0x55, 0xff ], [ 0xff, 0xff, 0x55 ], [ 0xff, 0xff, 0xff ], ]; } ); no Moose; __PACKAGE__->meta->make_immutable;
1;