uos_colours: University of Southampton colour palettes

Description Usage Format Details Examples

Description

A collection of colour palettes using the University of Southampton colour scheme. The list of available palettes is: neutral marine horizon contrast1 contrast2 contrast3

Usage

1

Format

An object of class character of length 19.

Details

Make a named list of University of Southampton brand colours

Examples

1
2
3
4
5
6
7
8
#' # Make an x-y plot using the marine palette
library(tidyverse)
df <- data.frame(x = rnorm(100, 0, 20),
          y = rnorm(100, 0, 20),
          cl = sample(letters[1:8], 100, replace=TRUE))
ggplot(df, aes(x, y, colour=cl, shape=cl)) +
  geom_point(size=4) + scale_colour_uos() +
  theme_bw() + theme(aspect.ratio=1)

ab604/sotoncolours documentation built on July 23, 2020, 9:50 a.m.