[Tex/LaTex] How to change color of hyperref

citingcross-referencinghyperref

im using the \documentclass[a4paper, 12pt,fleqn]{article}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage[colorlinks= false, urlcolor=blue]{hyperref}

package, but i want that i see no red or green color in the document, i just want to have it white so that i can klick on the reference or table or anything that is linked with hyperref. Is there a possibility

Best Answer

Use following. You can change colour as per your choice.

 \usepackage{hyperref}
 \hypersetup{
     colorlinks=true,
     linkcolor=blue,
     filecolor=blue,
     citecolor = black,      
     urlcolor=cyan,
     }
Related Question