.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "Color::Calc::WWW 3" .TH Color::Calc::WWW 3 2023-07-25 "perl v5.38.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME Color::Calc::WWW \- Simple calculations with colors for the WWW. .SH SYNOPSIS .IX Header "SYNOPSIS" .Vb 6 \& use Color::Calc::WWW; \& my $background = \*(Aqgreen\*(Aq; \& print \*(Aqbackground: \*(Aq, color($background),\*(Aq;\*(Aq; \& print \*(Aqborder\-top: solid 1px \*(Aq, color_light($background),\*(Aq;\*(Aq; \& print \*(Aqborder\-bottom: solid 1px \*(Aq, color_dark($background),\*(Aq;\*(Aq; \& print \*(Aqcolor: \*(Aq, color_contrast_bw($background),\*(Aq;\*(Aq; .Ve .SH DESCRIPTION .IX Header "DESCRIPTION" The \f(CW\*(C`Color::Calc::WWW\*(C'\fR module implements simple calculations with RGB colors for the World Wide Web. This can be used to create a full color scheme from a few colors. .PP This module is nearly identical to using the following: .PP .Vb 1 \& use Color::Calc(\*(AqColorScheme\*(Aq => \*(AqWWW\*(Aq, \*(AqOutputFormat\*(Aq => \*(Aqhtml\*(Aq); .Ve .PP However, this module also makes the functions available when not imported: .PP .Vb 2 \& use Color::Calc::WWW(); # don\*(Aqt import \& Color::Calc::WWW::color(\*(AqF00\*(Aq); .Ve .SH USAGE .IX Header "USAGE" By default, all functions are imported. .PP All functions recognize all HTML color keywords (through Graphics::ColorNames::WWW) and output the results in WWW-compatible formats, i.e. as one of the 16 basic HTML keywords (see Graphics::ColorNames::WWW) or as #RRGGBB. .IP "color, color_mix, ..." 4 .IX Item "color, color_mix, ..." .Vb 1 \& See L for a list of available calculation functions. .Ve .SH NOTE .IX Header "NOTE" .SH AUTHOR .IX Header "AUTHOR" Claus Färber .SH LICENSE .IX Header "LICENSE" Copyright 2004\-2010 Claus Färber. .PP This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.