|
| 1 | +body.light-mode .table { |
| 2 | + background-color: #ffffff; |
| 3 | + color: #000000; |
| 4 | +} |
| 5 | +body.light-mode .table thead > tr th { |
| 6 | + background-color: #ffffff; |
| 7 | +} |
| 8 | +body.light-mode .pattern-count { |
| 9 | + background-color: #ffffff; |
| 10 | + color: #000000; |
| 11 | +} |
| 12 | +body.light-mode .table tr:nth-child(odd) { |
| 13 | + background-color: #f1f2f4; |
| 14 | +} |
| 15 | +body.light-mode .table tr:nth-child(even) { |
| 16 | + background-color: #ffffff; |
| 17 | +} |
| 18 | +body.light-mode .table tbody tr:hover { |
| 19 | + background-color: #dcdfe4; |
| 20 | + color: #000000; |
| 21 | +} |
| 22 | + |
| 23 | +body.dark-mode .table { |
| 24 | + background-color: #161a1d; |
| 25 | + color: #ffffff; |
| 26 | +} |
| 27 | +body.dark-mode .table thead > tr th { |
| 28 | + background-color: #161a1d; |
| 29 | +} |
| 30 | +body.dark-mode .pattern-count { |
| 31 | + background-color: #161a1d; |
| 32 | + color: #ffffff; |
| 33 | +} |
| 34 | +body.dark-mode .table tr:nth-child(odd) { |
| 35 | + background-color: #22272b; |
| 36 | +} |
| 37 | +body.dark-mode .table tr:nth-child(even) { |
| 38 | + background-color: #161a1d; |
| 39 | +} |
| 40 | +body.dark-mode .table tbody tr:hover { |
| 41 | + background-color: #101214; |
| 42 | + color: #ffffff; |
| 43 | +} |
| 44 | +body.dark-mode .modal-content { |
| 45 | + background-color: #1d2125; |
| 46 | + color: #ffffff; |
| 47 | + .close { |
| 48 | + color: #ffffff; |
| 49 | + } |
| 50 | +} |
| 51 | + |
1 | 52 | .table {
|
2 | 53 | .row {
|
3 | 54 | justify-content: center;
|
|
0 commit comments