https://github.com/tjmahr/colors
https://github.com/tjmahr/colors
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tjmahr/colors
- Owner: tjmahr
- Created: 2019-03-01T15:27:32.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-13T17:30:56.000Z (about 6 years ago)
- Last Synced: 2025-02-24T13:56:35.800Z (3 months ago)
- Size: 21.5 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
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)
})
```