darker: darker

Description Usage Arguments Details Value See Also Examples

View source: R/color.R

Description

Given a color, return a darker one

Usage

1
darker(col, amount=150)

Arguments

col

(color) The original color. Might be specified as a color name or a "#RRGGBB(AA)" hex color definition.

amount

(integer, [0-255]) The fixed amount to subtract to each RGB channel (Defaults to 150).

Details

Very simple utility function to create darker colors. Given a color, it transforms it to rgb space, adds a set amount to all chanels and transforms it back to a color.

Value

A darker color

See Also

lighter

Examples

1
2
3
4
5
 
darker("red")
darker("#333333")
darker(c("red", 3, "#FF00FF"))
 

karyoploteR documentation built on Nov. 8, 2020, 5:52 p.m.