Guest User

Untitled

a guest
Dec 14th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. @link-color: #428bca;
  2.  
  3. a {
  4. color: @link-color;
  5. }
  6.  
  7. const linkColor = '#428bca';
  8. document.getElementsByTagName('a').forEach(link => {
  9. link.style.color = linkColor;
  10. });
Add Comment
Please, Sign In to add comment