/*
   table-parity-coloring.css

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

   usage:

   This style makes the background color of even columns of the table
   with 'parity' class 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.

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

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