Access HEX codes of blues that have been interpolated between those used in the UKRI logo.
Usage
ukri_blues_n(
n,
colours = ukri_blues(),
bias = 1,
space = "Lab",
interpolate = "linear",
alpha = FALSE,
...
)
Arguments
- n
The number of colours to return.
- colours
The colours to interpolate between. By default these are set to the blues from the UKRI logo.
- bias
A positive number. Higher values will give more widely spaced colours at the higher end of the colour spectrum.
- space
A character string indicating whether the colours should be interpolated in RGB or CIE Lab colour spaces.
- interpolate
A character indicating whether a spline or linear interpolation method should be used.
- alpha
A logical value indicating whether an alpha channel should be returned.
- ...
Arguments to be passed to
grDevices::colorRampPalette
.
See also
Other Palettes:
cgem_colours_n()
,
cgem_colours()
,
cruk_colours_n()
,
cruk_colours()
,
ebio_colours_n()
,
ebio_colours()
,
ukri_blues()
,
ukri_purples_n()
,
ukri_purples()
Examples
barplot(
1:5,
col = ukri_blues_n(5)
)