-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbeautiful_color_palette.R
58 lines (35 loc) · 1.34 KB
/
beautiful_color_palette.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# rcolors -------------------------------------------
# https://github.com/rpkgs/rcolors?tab=readme-ov-file
install.packages('rcolors')
library(rcolors)
cols = rcolors$amwg_blueyellowred
show_cols(cols)
(cols_1 = get_color(rcolors$amwg_blueyellowred, n = 20))
print(names(colors_group))
show_cols(colors_group$rainbow, margin = 14)
# PNWcolors --------------------------------------------
devtools::install_github("jakelawlor/PNWColors")
library(PNWColors)
names(pnw_palettes)
PNWColors::pnw_palette('Bay')
# MetBrewer ------------------------------------------
devtools::install_github("BlakeRMills/MetBrewer")
library(MetBrewer)
MetBrewer::display.all.met()
MetBrewer::colorblind_met_palettes
# NatParksPalettes -----------------------------------
devtools::install_github("kevinsblake/NatParksPalettes")
library(NatParksPalettes)
names(NatParksPalettes)
NatParksPalettes::scale_fill_natparks_c()
# rockthemes ------------------------------------------
devtools::install_github("johnmackintosh/rockthemes")
library(rockthemes)
show_col(californication_pal()(10))
# RColorBrewer ----------------------------------------
library(RColorBrewer)
display.brewer.all()
# paletter --------------------------------------------
library(paletteer)
paletteer::palettes_d_names
paletteer::palettes_c_names