I knew that I can set tip color by grouping the tip labels like this:
library(ggtree)
tree<-read.tree(text="(A,(B,C));"
dd <-data.frame(taxa=c("A","B","C"),place=c("s1","s1","s2"))
p<-ggtree(tree)
p<-p %<+% dd +geom_tiplab(aes(color=place))
p
So that random sets of color are applied according to the place group
But how do I specify my own color? (for example I want s1 in black and s2 in red)
You can set the tip color by using groupOTU on the tree and the branches.