Giter Site home page Giter Site logo

leonawicz / legocolors Goto Github PK

View Code? Open in Web Editor NEW
4.0 2.0 0.0 429 KB

Lego color naming conventions, associated metadata, and mapping functions.

Home Page: https://leonawicz.github.io/legocolors/

License: Other

R 99.00% CSS 1.00%
r-package lego color-palettes

legocolors's Introduction

legocolors

Author: Matthew Leonawicz ORCID logo
License: MIT

Project Status: Active – The project has reached a stable, usable state and is being actively developed. Travis build status AppVeyor build status Codecov test coverage

CRAN status CRAN downloads Github Stars

Donate

legocolors provides a dataset containing several Lego color naming conventions established by various popular sources. It also provides functions for mapping between these color naming conventions as well as between Lego color names, hex colors, and R color names.

By default, nearest colors are computed based on distance in RGB space when an exact match is not found. This behavior supports the purpose of exchanging arbitrary colors for known Lego colors when the goal is to actually acquire and build something out of Lego parts. This focus is also one of the reasons legocolors uses BrickLink color names as the default naming convention. See ?legocolor for details.

Installation

Install the CRAN release of legocolors with

install.packages("legocolors")

Install the development version from GitHub with

# install.packages("remotes")
remotes::install_github("leonawicz/legocolors")

Palette conversions

The key helper functions are hex_to_legocolor and legocolor_to_hex. hex_to_color is also provided for general convenience.

library(legocolors)
hex_to_color(c("#ff0000", "#ff0001"))
#> [1] "red"  "~red"
hex_to_legocolor("#ff0000")
#> [1] "~Trans-Red"
hex_to_legocolor("#ff0000", material = "solid")
#> [1] "~Red"
legocolor_to_hex("Red")
#> [1] "#B40000"
hex_to_color(legocolor_to_hex("Red"))
#> [1] "~red3"

x <- topo.colors(10)
hex_to_legocolor(x)
#>  [1] "~Dark Purple"              "~Blue"                     "~Trans-Dark Blue"          "~Medium Azure"             "~Bright Green"             "~Lime"                    
#>  [7] "~Glitter Trans-Neon Green" "~Trans-Yellow"             "~Trans-Neon Green"         "~Light Nougat"
hex_to_legocolor(x, material = "solid")
#>  [1] "~Dark Purple"         "~Blue"                "~Dark Azure"          "~Medium Azure"        "~Bright Green"        "~Lime"                "~Yellow"             
#>  [8] "~Yellow"              "~Bright Light Yellow" "~Light Nougat"
hex_to_legocolor(x, def = "tlg", material = "solid")
#>  [1] "~Medium Lilac"           "~Bright Blue"            "~Dark Azur"              "~Medium Azur"            "~Bright Green"           "~Bright Yellowish Green"
#>  [7] "~Bright Yellow"          "~Bright Yellow"          "~Cool Yellow"            "~Light Nougat"

While different sets of Lego colors are organized by material type, e.g., solid colors, semi-transparent colors, etc., these palettes are not useful for plotting data. The greatest value comes from converting useful color palettes to those comprised of existing Lego colors while still keeping as close to the original palette as possible.

Palette preview

The view_legopal function can be used to quickly see a Lego color palette. It can plot a named material palette, but like the functions above, it can also display a converted palette if given an arbitrary vector of hex color values.

view_legopal("solid")

r <- rainbow(9)
r
#> [1] "#FF0000" "#FFAA00" "#AAFF00" "#00FF00" "#00FFAA" "#00AAFF" "#0000FF" "#AA00FF" "#FF00AA"

view_legopal(r, material = "solid", show_labels = TRUE, label_size = 0.7)

Recommended colors

Dealing with

  • Available colors for generic bricks and plates but prohibitively expensive.
  • Available colors for generic bricks and plates but with low supply.
  • Colors used only for exotic/specialty parts (not available for bricks and plates).

Filtering to a decent set of Lego colors that are relatively easy to acquire online at BrickLink.com for simple brick and/or plate parts, and relatively affordable, is largely the responsibility of the user. There is a recommended column in the legocolors dataset. However, a human-derived recommendation column would be better (feel free to submit a PR if you’d like to improve the package).

In the previous version of legocolors, brick- and plate- specific data, excluding more exotic parts, was scraped from the website catalog, but this has become too difficult to do reliably. For now, you will have to use your personal Lego knowledge to filter out irrelevant or problematic colors from the complete official set. This is worth considering because even though BrickLink consistently offers the widest selection and greatest quantity at the lowest price, supply and demand leads to some parts in some colors being prohibitively expensive to acquire in quantity. When determining what colors you wish to use to build a physical model, you will save an incredible amount of money if you can accept limiting your palette to the most common Lego colors.

Citation

Matthew Leonawicz (2021). legocolors: Official Lego Color Palettes. R package version 0.3.2. https://github.com/leonawicz/legocolors

Contribute

Contributions are welcome. Contribute through GitHub via pull request. Please create an issue first if it is regarding any substantive feature add or change.


Please note that the legocolors project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.

legocolors's People

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

legocolors's Issues

make it easy to see what colors each palette offers

similar to

RColorBrewer::display.brewer.all()

(for all palettes) and

RColorBrewer::display.brewer.pal(n = 8, name = 'Solid')

for a specific palette

I made one for the first 8 colors of the "solid" palette using:

par(bg = 'lightgray', mar = c(4, 2, 4, 2))
plot(x = 1:8, y = rep(0, 8), col = legocolors::legopals$solid[1:8], pch = 15, cex = 6, axes = FALSE, xlab = NA, ylab = NA, main = 'The first 8 colors of the "solid" palette')

first_eight.pdf

and for the entire "solid" palette using:

par(bg = 'lightgray', mar = c(4, 2, 4, 2))
plot(x = rep(x = 1:9, each = 9), y = rep(x = 1:9, times = 9), col = c(legocolors::legopals$solid, NA), pch = 15, cex = 6, axes = FALSE, xlab = NA, ylab = NA, main = 'The 80 colors of the "solid" palette')

solid_palette.pdf

Please feel free to use these

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.