A selection of themes that fit with the UiO branding instructions.

theme_uio(base_size = 10)

theme_uio_dark(base_size = 10)

theme_uio_void(base_size = 10)

theme_uio_dark_void(base_size = 10)

Arguments

base_size

text size

Details

  • theme_uio - base theme for UiO

  • theme_uio_dark - dark/inverted version of base theme

  • theme_uio_void - base theme without axis information or grid

  • theme_uio_darl_void - dark/inverted theme without axis information or grid

Examples

if (FALSE) { library(ggplot2) ggplot(mtcars, aes(mpg, disp, colour = cyl)) + geom_point(size = 5) + theme_uio() ggplot(mtcars, aes(mpg, disp, colour = cyl)) + geom_point(size = 5) + theme_uio_dark() ggplot(mtcars, aes(mpg, disp, colour = cyl)) + geom_point(size = 5) + theme_uio_void() ggplot(mtcars, aes(mpg, disp, colour = factor(cyl))) + geom_point(size = 5) + theme_uio_dark_void() }