1.首先在导言区自定义一个颜色
\definecolor{lightblue}{RGB}{91,155,213}
2.在表格标题代码前设置标题格式
\captionsetup{labelfont={color=lightblue}}
表格标题颜色可以直接通过更改字体颜色完成
\caption{\color{lightblue}{\textbf{Computational complexities for different operations.}}}
表格内字体颜色直接在生成表格时定义
\begin{table}[H]\color{lightblue}
表格代码及效果如下
\begin{table}[H]\color{lightblue}
\captionsetup{labelfont={color=lightblue}}
\caption{\color{lightblue}{\textbf{Computational complexities for different operations.}}}
\centering
\begin{tabular}{|c|c|}
\hline
Step & Complexity \\ \hline
Transmit beamforming ($\mathbf{w}$) & $\mathcal{O}({(N + M)^2})$ \\ \hline
Phase shift via linear search ($\Phi$) & $\mathcal{O}({I_{ite}}N/\lambda)$ \\ \hline
Phase shift via approximate solution ($\Phi$) & ${\mathcal O}( {I_{ite}}{N })$ \\ \hline
Tag splitting coefficient ($\alpha$) & $\mathcal{O}({I_{ite}}(N + M)^2)$ \\ \hline
\end{tabular}
\end{table}