Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dmi3kno/colormind
Generate Color Palettes With AI
https://github.com/dmi3kno/colormind
Last synced: 2 months ago
JSON representation
Generate Color Palettes With AI
- Host: GitHub
- URL: https://github.com/dmi3kno/colormind
- Owner: dmi3kno
- License: other
- Created: 2020-02-01T14:27:39.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-18T13:00:50.000Z (almost 5 years ago)
- Last Synced: 2024-08-03T21:02:56.842Z (6 months ago)
- Language: R
- Size: 2.27 MB
- Stars: 72
- Watchers: 4
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
- awesome-r-dataviz - colormind - Generate Color Palettes With AI (using colormind.io palette generator). (ggplot / Palettes 🎨)
- jimsghstars - dmi3kno/colormind - Generate Color Palettes With AI (R)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)
The goal of `colormind` is to assist in generating aesthetically pleasing color scales using [colormind.io](http://colormind.io) palette generator.
## Installation
You can install the development version of `colormind` from [Github](https://github.com) with:
``` r
remotes::install_github("dmi3kno/colormind")
```## Example
Colormind.io is a color scheme generator that uses deep learning. It can learn color styles from photographs, movies, and popular art. Check [colormind.io](http://colormind.io) for currently loaded color models (sample palettes) or retrieve them directly into your R session with `get_colormind_models()`. Color models get updated daily.
```{r example}
library(colormind)
## basic example code
mods <- get_colormind_models()
mods
```Here's randomly generated palette using "default" color model.
```{r}
colp <- get_colormind_colors()
scales::show_col(colp, borders = NA)
```You can also "seed" palette with your own colors. In order to do that, you need to pass a color vector (maximum length 5) with some values filled in. If you want something closer to diverging palette, you might want to try placing your suggested colors to opposite ends of a vector.
```{r pressure}
colp <- c("#006494", NA, NA, NA, "#dc493a")
scales::show_col(colp, borders = NA)
```The missing values in your vector will be complemented by colormind.io using current color model.
```{r}
colr <- get_colormind_colors(colp, "default")
scales::show_col(colr, borders = NA)
```Colors are randomized every time you hit an API, so you may try it several times, or try another color model.
```{r}
library(purrr)
slow_get_colormind_colors <- slowly(get_colormind_colors, rate = rate_delay(3))walk(mods, ~slow_get_colormind_colors(colp, model=.x) %>%
scales::show_col(borders = NA))```