为整个文档配置表格线颜色?

为整个文档配置表格线颜色?

我正在使用 tabulartabularxtabulary使用包array,我想声明整个文档中所有表格的线条颜色。

目标是使它们稍微不那么暗。

是否有包/命令可以执行此操作?我发现我可以使用以下命令轻松更改一个表的线条颜色\colortbl

\documentclass{article}
\usepackage{colortbl}
\begin{document}
  \begin{tabular}{l!{\color{green}\vrule}l}
    \arrayrulecolor{red}\hline
    test & test\\\arrayrulecolor{blue}\hline
  \end{tabular}
\end{document}

但是我不想重写我的整个文档来改变所有地方。

答案1

在此处输入图片描述

\arrayrulecolor{black}

在此处输入图片描述

\arrayrulecolor{gainsboro}

在此处输入图片描述

\arrayrulecolor{antiquewhite}

平均能量损失

\documentclass{article}

\usepackage{hhline,colortbl}
    \definecolor{antiquewhite}{rgb}{0.98, 0.92, 0.84}
        \definecolor{black}{rgb}{0.0, 0.0, 0.0}
            \definecolor{gainsboro}{rgb}{0.86, 0.86, 0.86}
\begin{document}
\arrayrulecolor{antiquewhite}

\begin{tabular}
  {|l|  c|    c|}             \hline
 one & two & three     \\ \hline
  1  & 2  & 3            \\ \hline
  4  & 5  & 6            \\ \hline
\end{tabular}
\end{document}

相关内容