• The ToC consists of links to sections of the post. Let’s keep the color of the links consistent with the color of other URLs across the site.
  • Additionally, I think it is more visually pleasing if the font-size of the ToC content is a bit smaller than the font-size for the posts.

All of this can be accomplished by adding the following to assets/main/scss/_custom.scss

1#TableOfContents {
2  font-size: 0.9rem;
3  color: #2476bf;
4}
5
6.post #TableOfContents {
7  font-size: 0.9rem;
8  color: #2476bf;
9}