Email

Thunderbird:覆蓋收到的 HTML 電子郵件中的顏色

  • July 12, 2014

我需要覆蓋收到的 HTML 電子郵件中的預設顏色。我遵循了這個Howto,並相應地修改了我的userContent.css。基本上,我需要深色背景上的白色文本:

$ cat userContent.css
body {
 color: white !important; 
 background-color: #303030 !important;
}

td {
 color: white !important;
 background-color: black !important;
}

這適用於背景顏色,但我想要的字型顏色(白色)被忽略,即使我使用!important.

我如何確保所有收到的 HTML 電子郵件在深色背景上都有白色字型?

您只更改了兩個 HTML 元素 (bodytd) 的顏色。您可能需要對其他元素或*所有元素執行此操作。

您必須使用text-color而不是color.

引用自:https://unix.stackexchange.com/questions/144214