/* 1. Unvisited link (Yellow/Orange JS Class color) */
pre code a {
    color: #f8c555;
    text-decoration: underline;
}

/* 2. Visited link (Tomorrow Theme Purple) */
pre code a:visited {
    color: #f8c555; 
}

/* 3. Hover state (White) */
pre code a:hover {
    color: #ffffff;
    text-decoration: none; 
}

/* 4. Active state (when actively clicking down on the mouse) */
pre code a:active {
    color: #f8c555; 
}