# R program to illustrate# colors function# Calling the colors() function# to show all the 657 colors that# names are contained in# R programming
colors()
# R program to illustrate# colors function# Calling the colors() function# with specific serial number of# color names contained in R# Programming
colors()[1]
colors()[3]
colors()[10]
colors()[655]
colors()[656]