An open API service indexing awesome lists of open source software.

https://github.com/tjmahr/colors


https://github.com/tjmahr/colors

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

---
output: github_document
---

```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
```

# colors

`colors.yaml` is a file where I put some colors I like.

```{r plots, fig.width=8, fig.height = 4}
set <- yaml::read_yaml("colors.yaml")

purrr::walk(set, function(x) {
dput(x)
scales::show_col(x)
})
```