├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── eyedropper.R ├── generate-palette.R ├── helpers.R └── pencil-case.R ├── README.Rmd ├── README.md ├── cran-comments.md ├── dev ├── images │ ├── belize-output-12.png │ ├── belize-output-s.png │ ├── belize-s.jpg │ ├── belize-swatch.png │ ├── belize.jpg │ ├── calibrate.png │ ├── cat4.png │ ├── catedral-s.png │ ├── eyedropper.gif │ ├── eyedropper1.jpg │ ├── feature.png.png │ ├── hex-amatic.png │ ├── misc │ │ └── graffiti.png │ ├── mountains-in-autumn.png │ ├── mountains-selector.png │ ├── mountains.png │ ├── pencil-case │ │ ├── mastodon-blood-mountain.png │ │ ├── mastodon-crack-the-skye.png │ │ ├── mastodon-empoeror-of-sands.png │ │ ├── mastodon-hushed-and-grim.png │ │ ├── mastodon-leviathan.png │ │ ├── mastodon-once-more-around-the-sun.png │ │ ├── mastodon-remission.png │ │ ├── mastodon-the-hunter.png │ │ ├── motley-crue.png │ │ ├── mountains-in-autumn.png │ │ ├── tool-10000-days.png │ │ ├── tool-fear-inoculum.png │ │ └── tool-lateralus.png │ ├── show-pencil-case.png │ ├── snes │ │ ├── mana.png │ │ ├── secret-of-mana-40p.png │ │ ├── secret-of-mana-80p.png │ │ ├── secret-of-mana-og.png │ │ └── secret-of-mana.png │ ├── sunset-sampler-s.png │ ├── sunset-sampler.png │ ├── sunset-south-coast-output-s.png │ ├── sunset-south-coast-output.png │ ├── sunset-south-coast-s.jpg │ └── sunset-south-coast.jpg ├── scripts │ ├── dev.R │ ├── hex.R │ ├── show-pal.R │ ├── tests.R │ └── tsp.R └── tests │ └── tests.R ├── eyedroppeR.Rproj ├── inst └── images │ ├── calibration.png │ ├── hex.png │ └── sunset.png └── man ├── choose_font_colour.Rd ├── extract_pal.Rd ├── eyedropper.Rd ├── generate_palette.Rd ├── make_output.Rd ├── min_max.Rd ├── modify_saturation.Rd ├── palette.Rd ├── paste_pal_code.Rd ├── pencil_case.Rd ├── show_pal.Rd ├── show_pencil_case.Rd ├── sort_pal.Rd ├── sort_pal_auto.Rd └── swatch.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2022 2 | COPYRIGHT HOLDER: Daniel Oehm 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/eyedropper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/R/eyedropper.R -------------------------------------------------------------------------------- /R/generate-palette.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/R/generate-palette.R -------------------------------------------------------------------------------- /R/helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/R/helpers.R -------------------------------------------------------------------------------- /R/pencil-case.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/R/pencil-case.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/cran-comments.md -------------------------------------------------------------------------------- /dev/images/belize-output-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/belize-output-12.png -------------------------------------------------------------------------------- /dev/images/belize-output-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/belize-output-s.png -------------------------------------------------------------------------------- /dev/images/belize-s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/belize-s.jpg -------------------------------------------------------------------------------- /dev/images/belize-swatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/belize-swatch.png -------------------------------------------------------------------------------- /dev/images/belize.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/belize.jpg -------------------------------------------------------------------------------- /dev/images/calibrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/calibrate.png -------------------------------------------------------------------------------- /dev/images/cat4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/cat4.png -------------------------------------------------------------------------------- /dev/images/catedral-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/catedral-s.png -------------------------------------------------------------------------------- /dev/images/eyedropper.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/eyedropper.gif -------------------------------------------------------------------------------- /dev/images/eyedropper1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/eyedropper1.jpg -------------------------------------------------------------------------------- /dev/images/feature.png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/feature.png.png -------------------------------------------------------------------------------- /dev/images/hex-amatic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/hex-amatic.png -------------------------------------------------------------------------------- /dev/images/misc/graffiti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/misc/graffiti.png -------------------------------------------------------------------------------- /dev/images/mountains-in-autumn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/mountains-in-autumn.png -------------------------------------------------------------------------------- /dev/images/mountains-selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/mountains-selector.png -------------------------------------------------------------------------------- /dev/images/mountains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/mountains.png -------------------------------------------------------------------------------- /dev/images/pencil-case/mastodon-blood-mountain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/pencil-case/mastodon-blood-mountain.png -------------------------------------------------------------------------------- /dev/images/pencil-case/mastodon-crack-the-skye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/pencil-case/mastodon-crack-the-skye.png -------------------------------------------------------------------------------- /dev/images/pencil-case/mastodon-empoeror-of-sands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/pencil-case/mastodon-empoeror-of-sands.png -------------------------------------------------------------------------------- /dev/images/pencil-case/mastodon-hushed-and-grim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/pencil-case/mastodon-hushed-and-grim.png -------------------------------------------------------------------------------- /dev/images/pencil-case/mastodon-leviathan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/pencil-case/mastodon-leviathan.png -------------------------------------------------------------------------------- /dev/images/pencil-case/mastodon-once-more-around-the-sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/pencil-case/mastodon-once-more-around-the-sun.png -------------------------------------------------------------------------------- /dev/images/pencil-case/mastodon-remission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/pencil-case/mastodon-remission.png -------------------------------------------------------------------------------- /dev/images/pencil-case/mastodon-the-hunter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/pencil-case/mastodon-the-hunter.png -------------------------------------------------------------------------------- /dev/images/pencil-case/motley-crue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/pencil-case/motley-crue.png -------------------------------------------------------------------------------- /dev/images/pencil-case/mountains-in-autumn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/pencil-case/mountains-in-autumn.png -------------------------------------------------------------------------------- /dev/images/pencil-case/tool-10000-days.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/pencil-case/tool-10000-days.png -------------------------------------------------------------------------------- /dev/images/pencil-case/tool-fear-inoculum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/pencil-case/tool-fear-inoculum.png -------------------------------------------------------------------------------- /dev/images/pencil-case/tool-lateralus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/pencil-case/tool-lateralus.png -------------------------------------------------------------------------------- /dev/images/show-pencil-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/show-pencil-case.png -------------------------------------------------------------------------------- /dev/images/snes/mana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/snes/mana.png -------------------------------------------------------------------------------- /dev/images/snes/secret-of-mana-40p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/snes/secret-of-mana-40p.png -------------------------------------------------------------------------------- /dev/images/snes/secret-of-mana-80p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/snes/secret-of-mana-80p.png -------------------------------------------------------------------------------- /dev/images/snes/secret-of-mana-og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/snes/secret-of-mana-og.png -------------------------------------------------------------------------------- /dev/images/snes/secret-of-mana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/snes/secret-of-mana.png -------------------------------------------------------------------------------- /dev/images/sunset-sampler-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/sunset-sampler-s.png -------------------------------------------------------------------------------- /dev/images/sunset-sampler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/sunset-sampler.png -------------------------------------------------------------------------------- /dev/images/sunset-south-coast-output-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/sunset-south-coast-output-s.png -------------------------------------------------------------------------------- /dev/images/sunset-south-coast-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/sunset-south-coast-output.png -------------------------------------------------------------------------------- /dev/images/sunset-south-coast-s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/sunset-south-coast-s.jpg -------------------------------------------------------------------------------- /dev/images/sunset-south-coast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/images/sunset-south-coast.jpg -------------------------------------------------------------------------------- /dev/scripts/dev.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/scripts/dev.R -------------------------------------------------------------------------------- /dev/scripts/hex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/scripts/hex.R -------------------------------------------------------------------------------- /dev/scripts/show-pal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/scripts/show-pal.R -------------------------------------------------------------------------------- /dev/scripts/tests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/scripts/tests.R -------------------------------------------------------------------------------- /dev/scripts/tsp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/scripts/tsp.R -------------------------------------------------------------------------------- /dev/tests/tests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/dev/tests/tests.R -------------------------------------------------------------------------------- /eyedroppeR.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/eyedroppeR.Rproj -------------------------------------------------------------------------------- /inst/images/calibration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/inst/images/calibration.png -------------------------------------------------------------------------------- /inst/images/hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/inst/images/hex.png -------------------------------------------------------------------------------- /inst/images/sunset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/inst/images/sunset.png -------------------------------------------------------------------------------- /man/choose_font_colour.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/man/choose_font_colour.Rd -------------------------------------------------------------------------------- /man/extract_pal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/man/extract_pal.Rd -------------------------------------------------------------------------------- /man/eyedropper.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/man/eyedropper.Rd -------------------------------------------------------------------------------- /man/generate_palette.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/man/generate_palette.Rd -------------------------------------------------------------------------------- /man/make_output.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/man/make_output.Rd -------------------------------------------------------------------------------- /man/min_max.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/man/min_max.Rd -------------------------------------------------------------------------------- /man/modify_saturation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/man/modify_saturation.Rd -------------------------------------------------------------------------------- /man/palette.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/man/palette.Rd -------------------------------------------------------------------------------- /man/paste_pal_code.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/man/paste_pal_code.Rd -------------------------------------------------------------------------------- /man/pencil_case.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/man/pencil_case.Rd -------------------------------------------------------------------------------- /man/show_pal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/man/show_pal.Rd -------------------------------------------------------------------------------- /man/show_pencil_case.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/man/show_pencil_case.Rd -------------------------------------------------------------------------------- /man/sort_pal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/man/sort_pal.Rd -------------------------------------------------------------------------------- /man/sort_pal_auto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/man/sort_pal_auto.Rd -------------------------------------------------------------------------------- /man/swatch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doehm/eyedroppeR/HEAD/man/swatch.Rd --------------------------------------------------------------------------------