2020-12-09科研作图配色--十六进制

1.配色方案一

参考:2014年science上发表Genome interplay in the grain transcriptome of hexaploid bread wheat.

全文用#009C3E代表 A基因组,#431F6D代表B基因组,#F39800代表D基因组。
c('#009C3E','#431F6D','#F39800')
配色方案一

2.配色方案二

来源:R包tidyquant。

install.packages("tidyquant")
library(tidyquant)
color<-palette_dark()
     blue          red         green       yellow     steel_blue    navy_blue   light_green     pink   light_orange   lime_green  light_purple     purple 
   "#0055AA"    "#C40003"    "#00C19B"    "#EAC862"    "#7FD2FF"    "#007ED3"    "#B2DF8A"    "#FFACAA"    "#FF9D1E"    "#C3EF00"    "#CAB2D6"    "#894FC6" 
配色方案二

3.配色方案三

"#4197d8", "#f8c120", "#413496", "#495226", "#d60b6f"
"#e66519", "#d581b7", "#83d3ad", "#7c162c", "#26755d"
配色方案三

4.配色方案四

来源:R包BuenColors。

#包安装
Sys.setenv(R_REMOTES_NO_ERRORS_FROM_WARNINGS=TRUE)
devtools::install_github("caleblareau/BuenColors")
library("BuenColors")
#使用其中颜色
col <- jdb_color_maps[number1:number2]   #选择其中颜色
col
      HSC       MPP      LMPP       CMP       CLP       MEP       GMP       pDC      mono     GMP-A     GMP-B 
"#00441B" "#46A040" "#00AF99" "#FFC179" "#98D9E9" "#F6313E" "#FFA300" "#C390D4" "#FF5A00" "#AFAFAF" "#7D7D7D" 
    GMP-C       Ery       CD4       CD8        NK         B 
"#4B4B4B" "#8F1336" "#0081C9" "#001588" "#490C65" "#BA7FD0" 
配色方案四

你可能感兴趣的:(2020-12-09科研作图配色--十六进制)