/*
   table-parity-coloring-forcibly.css

   Copyleft 🄯 2021 Taiji Yamada <taiji@aihara.co.jp>

   usage:

   This style makes the background color of even columns of the table
   highly transparent white. However, if the background color of the
   table itself is white, the background color of even columns will be
   black with high transparency.

   このスタイルはテーブルの偶数列の背景色を透明度が高い白色とします。
   しかし、テーブル自体の背景色が白色の場合には、偶数列の背景色を透明
   度の高い黒色とします。

<link rel="stylesheet" href="path_to/table-parity-coloring-forcibly.css"/>
*/
@import url('./table-header-coloring.css');
table:not(.noparity)[style*='background: white;'] > tbody > tr:nth-child(even) {
  background: #00000011;
}
table:not(.noparity) > tbody > tr:nth-child(even) {
  background: #FFFFFF33;
}
