├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── dutchmasters.R ├── get_hex.R ├── misc.R ├── my_company_cols.R ├── ochre.R ├── scales.R └── viz_pallete.R ├── README.Rmd ├── README.md ├── README_files └── figure-markdown_github-ascii_identifiers │ ├── unnamed-chunk-1-1.png │ ├── unnamed-chunk-2-1.png │ ├── unnamed-chunk-2-2.png │ ├── unnamed-chunk-2-3.png │ ├── unnamed-chunk-2-4.png │ └── unnamed-chunk-3-1.png ├── man ├── dutchmasters.Rd ├── get_hex.Rd ├── get_pal.Rd ├── get_scale_color.Rd ├── hello.Rd ├── my_company_cols.Rd ├── ochre_palettes.Rd └── viz_palette.Rd └── paletti.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- 1 | exportPattern("^[[:alpha:]]+") 2 | -------------------------------------------------------------------------------- /R/dutchmasters.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/R/dutchmasters.R -------------------------------------------------------------------------------- /R/get_hex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/R/get_hex.R -------------------------------------------------------------------------------- /R/misc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/R/misc.R -------------------------------------------------------------------------------- /R/my_company_cols.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/R/my_company_cols.R -------------------------------------------------------------------------------- /R/ochre.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/R/ochre.R -------------------------------------------------------------------------------- /R/scales.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/R/scales.R -------------------------------------------------------------------------------- /R/viz_pallete.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/R/viz_pallete.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/README.md -------------------------------------------------------------------------------- /README_files/figure-markdown_github-ascii_identifiers/unnamed-chunk-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/README_files/figure-markdown_github-ascii_identifiers/unnamed-chunk-1-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_github-ascii_identifiers/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/README_files/figure-markdown_github-ascii_identifiers/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_github-ascii_identifiers/unnamed-chunk-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/README_files/figure-markdown_github-ascii_identifiers/unnamed-chunk-2-2.png -------------------------------------------------------------------------------- /README_files/figure-markdown_github-ascii_identifiers/unnamed-chunk-2-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/README_files/figure-markdown_github-ascii_identifiers/unnamed-chunk-2-3.png -------------------------------------------------------------------------------- /README_files/figure-markdown_github-ascii_identifiers/unnamed-chunk-2-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/README_files/figure-markdown_github-ascii_identifiers/unnamed-chunk-2-4.png -------------------------------------------------------------------------------- /README_files/figure-markdown_github-ascii_identifiers/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/README_files/figure-markdown_github-ascii_identifiers/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /man/dutchmasters.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/man/dutchmasters.Rd -------------------------------------------------------------------------------- /man/get_hex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/man/get_hex.Rd -------------------------------------------------------------------------------- /man/get_pal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/man/get_pal.Rd -------------------------------------------------------------------------------- /man/get_scale_color.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/man/get_scale_color.Rd -------------------------------------------------------------------------------- /man/hello.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/man/hello.Rd -------------------------------------------------------------------------------- /man/my_company_cols.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/man/my_company_cols.Rd -------------------------------------------------------------------------------- /man/ochre_palettes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/man/ochre_palettes.Rd -------------------------------------------------------------------------------- /man/viz_palette.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/man/viz_palette.Rd -------------------------------------------------------------------------------- /paletti.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwinTh/paletti/HEAD/paletti.Rproj --------------------------------------------------------------------------------