Revision a84e9ffb3ac841114d4db4e70036eab333d29d2f authored by R. Wayne Oldford on 10 May 2021, 06:10:05 UTC, committed by cran-robot on 10 May 2021, 06:10:05 UTC
1 parent bb4dcd2
Raw File
l_hexcolor.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/l_hexcolor.R
\name{l_hexcolor}
\alias{l_hexcolor}
\title{Convert color names to their 12 digit hexadecimal color representation}
\usage{
l_hexcolor(color)
}
\arguments{
\item{color}{a vector with color names}
}
\value{
a character vector with the 12 digit hexadecimal color strings.
}
\description{
Color names in loon will be mapped to colors according to the Tk
  color specifications and are normalized to a 12 digit hexadecimal color
  representation.
}
\examples{
if(interactive()){

p <- l_plot(1:2)
p['color'] <- 'red'
p['color']

l_hexcolor('red')
}
}
back to top