텍스트 색상과 셀 배경의 색상이 다르게 나타납니다.

텍스트 색상과 셀 배경의 색상이 다르게 나타납니다.

색상이 있는 셀이 있는 테이블에서 이제 색상이 있는 셀에 사용된 것과 동일한 색상을 사용하여 흰색 배경에 일부 텍스트를 작성하라는 요청을 받습니다. 그러나 아래 mre에서는 텍스트 색상이 셀 배경보다 훨씬 밝은 것으로 보입니다.

\documentclass[letterpaper,landscape,american,11pt]{article}
\usepackage[scaled=0.8]{helvet}
\renewcommand{\familydefault}{\sfdefault}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{array}
\makeatletter

\providecommand{\tabularnewline}{\\}
\makeatother
\usepackage[left=1in,right=1in]{geometry}
\usepackage{xcolor}
\usepackage{colortbl}

\definecolor{gray1}{HTML}{dcdcdc}
\definecolor{blue1}{rgb}{0.2617188, 0.6328125, 0.7890625}

\begin{document}

A little puzzle: the blue cell background looks considerably
darker than the blue letters, which are the same color.

We are pretty sure they are the same color because in row 3,
column 2, the cellcolor and textcolor are set to the same value.

\begin{tabular}{|c|c|c|}
\tabularnewline
Default Cells & are white & w/black FG\tabularnewline
\cellcolor{white}White BG Black FG&
\cellcolor{blue1}{Blue BG Black FG}&
\cellcolor{white}\textcolor{blue1}{White BG with Blue FG: VERY FAINT!}\tabularnewline
Blue FG on Blue BG in neighbor cell: &
\cellcolor{blue1}\textcolor{blue1}{Blue } &
\cellcolor{white}\cellcolor{white}\textcolor{blue1}{{\textbf{Blue bold}}}
\tabularnewline
\end{tabular}


\end{document}

옆 배경의 생생한 파란색과 비교하여 나에게 창백하게 보이는 텍스트는 2행 3열을 살펴보시기 바랍니다. 행 3 열 2는 파란색 배경에 파란색 텍스트로, 텍스트와 배경의 색상이 동일하게 나타납니다.

텍스트가 셀 배경에 비해 희미합니다.

나는 \color와 \textcolor에 의한 오류가 있을 것이라고 생각했는데, 그렇지 않다고 생각한다. 색상은 동일하지만 흰색으로 둘러싸인 "좁은" 글자에 그리면 다르게 나타납니다. 같은 색상의 배경에 컬러 텍스트를 쓰면 차이가 사라지는 것 같습니다.

색상을 조정했는데 셀 배경색과 비슷하게 보이려면 텍스트용 색상에 대한 RGB 조합을 상당히 줄여야 할 것 같습니다. 이상한 것 같습니다.

질문은 다음과 같습니다. 이것이 알려진 수정 사항이 있는 원고 준비 시 "알려진 문제"입니까? 배경 음영에 대한 RGB 값이 주어지면 텍스트가 많은 사람들에게 비슷한 색상으로 표시되도록 하는 체계적인 변환이 있습니까?

관련 정보