8000 GitHub - cj-holmes/vhs: Colour palettes based on blank VHS cassette packaging design
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

cj-holmes/vhs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vhs

Colour palettes based on blank VHS cassette packaging design.

The inspiration and images for the colour palettes came from flashbak.com

Examples

library(vhs)

View all palettes

view_all_vhs_palettes()

Get a single palette

Extract a single palette with vhs()

vhs("tdk_vivid") %>% 
  tibble(x=.) %>%
  mutate(x=fct_inorder(rev(x))) %>%
  ggplot() +
  geom_bar(aes("", fill=x), position = "stack") +
  scale_fill_identity()+
  theme_void()+
  coord_flip()

vhs("tdk_vivid", type="c", n=40) %>% 
  tibble(x=.) %>%
  mutate(x=fct_inorder(rev(x))) %>%
  ggplot() +
  geom_bar(aes("", fill=x), position = "stack") +
  scale_fill_identity()+
  theme_void()+
  coord_flip()

ggplot

ggplot(diamonds, aes(color, fill=cut))+
  geom_bar(col=1)+
  scale_fill_manual(values = vhs("rainbow"))

About

Colour palettes based on blank VHS cassette packaging design

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0