VERSION
version 0.67FUNCTIONS
create_color_theme_transform($basect, $func) => HASH
Create a new color theme by applying transform function $func (code) to base theme $basect (hash). For example if you want to create a reddish color theme from the default theme:
use Text::ANSITable; use SHARYANTO::Color::Util qw(mix_2_rgb_colors); use SHARYANTO::ColorTheme::Util qw(create_color_theme_transform); my $basect = Text::ANSITable->get_color_theme("Default::default_gradation"); my $redct = create_color_theme_transform( $basect, sub { mix_2_rgb_colors(shift, 'ff0000') }); # use the color theme my $t = Text::ANSITable->new; $t->color_theme($redct);
HOMEPAGE
Please visit the project's homepage at <https://metacpan.org/release/SHARYANTO-Utils>.SOURCE
Source repository is at <https://github.com/sharyanto/perl-SHARYANTO-Utils>.BUGS
Please report any bugs or feature requests on the bugtracker website <https://rt.cpan.org/Public/Dist/Display.html?Name=SHARYANTO-Utils>When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.
AUTHOR
Steven Haryanto <[email protected]>COPYRIGHT AND LICENSE
This software is copyright (c) 2014 by Steven Haryanto.This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.