如何更改指向外部 URL 的超链接的颜色?

如何更改指向外部 URL 的超链接的颜色?

我编写了以下命令来创建黑色或绿色的链接:

\documentclass[11pt,twoside,a4paper]{article}

\usepackage[margin=1.5in]{geometry}
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linktoc=all,
linkcolor=black,
}
\begin{document}
For online \LaTeX ~solution click on the  link :
\href{http://stackexchange.com/}{http://stackexchange.com/}
\end{document}

生产:

在此处输入图片描述

我想根据自己的喜好更改链接颜色?我该怎么做?

相关内容