Skip to content

Commit e63fa2d

Browse files
committed
Update pdf gen for renamed colors
1 parent 59d360f commit e63fa2d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lto.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,16 @@
5454

5555
if ($tapeType === "cln") {
5656
$pre = "CLN";
57-
$palette = "BW";
57+
$palette = "WHITE";
5858
$id = "CU";
5959
} elseif ($tapeType === "dg") {
6060
$pre = "DG ";
61-
$palette = "INV";
61+
$palette = "BLACK";
6262
$colorizeChars = true;
6363
}
6464

6565
// Black text, except if we're inverted.
66-
$textColor = ($palette != "INV") ? [0, 0, 0] : [255, 255, 255];
66+
$textColor = ($palette != "BLACK") ? [0, 0, 0] : [255, 255, 255];
6767

6868
// Start number
6969
//$start = 24;

0 commit comments

Comments
 (0)