ggthemes (version 3.4.0)

scale_fill_solarized: Solarized color scales

Description

See solarized_pal for details.

Usage

scale_fill_solarized(accent = "blue", ...)

scale_colour_solarized(accent = "blue", ...)

scale_color_solarized(accent = "blue", ...)

Arguments

accent

character Starting color.

...

Other arguments passed on to discrete_scale to control name, limits, breaks, labels and so forth.

See Also

Other solarized colour: solarized_pal

Examples

Run this code
# NOT RUN {
library("ggplot2")
p <- ggplot(mtcars) +
     geom_point(aes(x = wt, y = mpg, colour=factor(gear))) +
     facet_wrap(~am)
p + theme_solarized() + scale_colour_solarized()
# }

Run the code above in your browser using DataLab