rgb2hex: Convert RGB to HEX Color

Description Usage Arguments Author(s) Examples

View source: R/utilities.R

Description

Function to convert rgb color to hex color

Usage

1
rgb2hex(r = 0, g = 0, b = 0)

Arguments

r, g, b

colors, numeric scalar between 0 and 255

Author(s)

Nicholas Hamilton

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#Black
rgb2hex(0,0,0)

#White
rgb2hex(255,255,255)

#Red
rgb2hex(255,0,0)

#Green
rgb2hex(0,255,0) 

#Blue
rgb2hex(0,0,255)

#Vectorised sequence of blue
rgb2hex(0,0,seq(0,255,by=5))

leogama/ggtern documentation built on Dec. 21, 2021, 10:40 a.m.