@@ -291,7 +291,7 @@ discard block |
||
291 | 291 | //echo 'Calculation Exception: '.$ex->getMessage().PHP_EOL; |
292 | 292 | $result = '#N/A'; |
293 | 293 | throw new Calculation\Exception( |
294 | - $this->getWorksheet()->getTitle().'!'.$this->getCoordinate().' -> '.$ex->getMessage() |
|
294 | + $this->getWorksheet()->getTitle() . '!' . $this->getCoordinate() . ' -> ' . $ex->getMessage() |
|
295 | 295 | ); |
296 | 296 | } |
297 | 297 | |
@@ -586,14 +586,14 @@ discard block |
||
586 | 586 | public static function coordinateFromString($pCoordinateString = 'A1') |
587 | 587 | { |
588 | 588 | if (preg_match("/^([$]?[A-Z]{1,3})([$]?\d{1,7})$/", $pCoordinateString, $matches)) { |
589 | - return array($matches[1],$matches[2]); |
|
589 | + return array($matches[1], $matches[2]); |
|
590 | 590 | } elseif ((strpos($pCoordinateString, ':') !== false) || (strpos($pCoordinateString, ',') !== false)) { |
591 | 591 | throw new Exception('Cell coordinate string can not be a range of cells'); |
592 | 592 | } elseif ($pCoordinateString == '') { |
593 | 593 | throw new Exception('Cell coordinate can not be zero-length string'); |
594 | 594 | } |
595 | 595 | |
596 | - throw new Exception('Invalid cell coordinate '.$pCoordinateString); |
|
596 | + throw new Exception('Invalid cell coordinate ' . $pCoordinateString); |
|
597 | 597 | } |
598 | 598 | |
599 | 599 | /** |
@@ -733,11 +733,11 @@ discard block |
||
733 | 733 | |
734 | 734 | // Calculate range outer borders |
735 | 735 | $rangeStart = self::coordinateFromString($rangeA); |
736 | - $rangeEnd = self::coordinateFromString($rangeB); |
|
736 | + $rangeEnd = self::coordinateFromString($rangeB); |
|
737 | 737 | |
738 | 738 | // Translate column into index |
739 | - $rangeStart[0] = self::columnIndexFromString($rangeStart[0]); |
|
740 | - $rangeEnd[0] = self::columnIndexFromString($rangeEnd[0]); |
|
739 | + $rangeStart[0] = self::columnIndexFromString($rangeStart[0]); |
|
740 | + $rangeEnd[0] = self::columnIndexFromString($rangeEnd[0]); |
|
741 | 741 | |
742 | 742 | return array($rangeStart, $rangeEnd); |
743 | 743 | } |
@@ -753,7 +753,7 @@ discard block |
||
753 | 753 | // Calculate range outer borders |
754 | 754 | list($rangeStart, $rangeEnd) = self::rangeBoundaries($pRange); |
755 | 755 | |
756 | - return array( ($rangeEnd[0] - $rangeStart[0] + 1), ($rangeEnd[1] - $rangeStart[1] + 1) ); |
|
756 | + return array(($rangeEnd[0] - $rangeStart[0] + 1), ($rangeEnd[1] - $rangeStart[1] + 1)); |
|
757 | 757 | } |
758 | 758 | |
759 | 759 | /** |
@@ -780,7 +780,7 @@ discard block |
||
780 | 780 | list($rangeA, $rangeB) = explode(':', $pRange); |
781 | 781 | } |
782 | 782 | |
783 | - return array( self::coordinateFromString($rangeA), self::coordinateFromString($rangeB)); |
|
783 | + return array(self::coordinateFromString($rangeA), self::coordinateFromString($rangeB)); |
|
784 | 784 | } |
785 | 785 | |
786 | 786 | /** |
@@ -885,7 +885,7 @@ discard block |
||
885 | 885 | } |
886 | 886 | |
887 | 887 | // Range... |
888 | - list($rangeStart, $rangeEnd) = $range; |
|
888 | + list($rangeStart, $rangeEnd) = $range; |
|
889 | 889 | sscanf($rangeStart, '%[A-Z]%d', $startCol, $startRow); |
890 | 890 | sscanf($rangeEnd, '%[A-Z]%d', $endCol, $endRow); |
891 | 891 | ++$endCol; |
@@ -897,7 +897,7 @@ discard block |
||
897 | 897 | // Loop cells |
898 | 898 | while ($currentCol != $endCol) { |
899 | 899 | while ($currentRow <= $endRow) { |
900 | - $returnValue[] = $currentCol.$currentRow; |
|
900 | + $returnValue[] = $currentCol . $currentRow; |
|
901 | 901 | ++$currentRow; |
902 | 902 | } |
903 | 903 | ++$currentCol; |
@@ -38,14 +38,14 @@ |
||
38 | 38 | const TYPE_PIECHART = 'pieChart'; |
39 | 39 | const TYPE_PIECHART_3D = 'pie3DChart'; |
40 | 40 | const TYPE_DOUGHTNUTCHART = 'doughnutChart'; |
41 | - const TYPE_DONUTCHART = self::TYPE_DOUGHTNUTCHART; // Synonym |
|
41 | + const TYPE_DONUTCHART = self::TYPE_DOUGHTNUTCHART; // Synonym |
|
42 | 42 | const TYPE_SCATTERCHART = 'scatterChart'; |
43 | 43 | const TYPE_SURFACECHART = 'surfaceChart'; |
44 | 44 | const TYPE_SURFACECHART_3D = 'surface3DChart'; |
45 | 45 | const TYPE_RADARCHART = 'radarChart'; |
46 | 46 | const TYPE_BUBBLECHART = 'bubbleChart'; |
47 | 47 | const TYPE_STOCKCHART = 'stockChart'; |
48 | - const TYPE_CANDLECHART = self::TYPE_STOCKCHART; // Synonym |
|
48 | + const TYPE_CANDLECHART = self::TYPE_STOCKCHART; // Synonym |
|
49 | 49 | |
50 | 50 | const GROUPING_CLUSTERED = 'clustered'; |
51 | 51 | const GROUPING_STACKED = 'stacked'; |
@@ -30,12 +30,12 @@ |
||
30 | 30 | class Legend |
31 | 31 | { |
32 | 32 | /** Legend positions */ |
33 | - const XL_LEGEND_POSITION_BOTTOM = -4107; // Below the chart. |
|
34 | - const XL_LEGEND_POSITION_CORNER = 2; // In the upper right-hand corner of the chart border. |
|
35 | - const XL_LEGEND_POSITION_CUSTOM = -4161; // A custom position. |
|
36 | - const XL_LEGEND_POSITION_LEFT = -4131; // Left of the chart. |
|
37 | - const XL_LEGEND_POSITION_RIGHT = -4152; // Right of the chart. |
|
38 | - const XL_LEGEND_POSITION_TOP = -4160; // Above the chart. |
|
33 | + const XL_LEGEND_POSITION_BOTTOM = -4107; // Below the chart. |
|
34 | + const XL_LEGEND_POSITION_CORNER = 2; // In the upper right-hand corner of the chart border. |
|
35 | + const XL_LEGEND_POSITION_CUSTOM = -4161; // A custom position. |
|
36 | + const XL_LEGEND_POSITION_LEFT = -4131; // Left of the chart. |
|
37 | + const XL_LEGEND_POSITION_RIGHT = -4152; // Right of the chart. |
|
38 | + const XL_LEGEND_POSITION_TOP = -4160; // Above the chart. |
|
39 | 39 | |
40 | 40 | const POSITION_RIGHT = 'r'; |
41 | 41 | const POSITION_LEFT = 'l'; |
@@ -293,7 +293,7 @@ |
||
293 | 293 | $calcEngine = \PHPExcel\Calculation::getInstance($worksheet->getParent()); |
294 | 294 | $newDataValues = \PHPExcel\Calculation::unwrapResult( |
295 | 295 | $calcEngine->_calculateFormulaValue( |
296 | - '='.$this->dataSource, |
|
296 | + '=' . $this->dataSource, |
|
297 | 297 | null, |
298 | 298 | $worksheet->getCell('A1') |
299 | 299 | ) |
@@ -618,7 +618,7 @@ |
||
618 | 618 | $this->numberFormat->getHashCode() . |
619 | 619 | $hashConditionals . |
620 | 620 | $this->protection->getHashCode() . |
621 | - ($this->quotePrefix ? 't' : 'f') . |
|
621 | + ($this->quotePrefix ? 't' : 'f') . |
|
622 | 622 | __CLASS__ |
623 | 623 | ); |
624 | 624 | } |
@@ -289,16 +289,16 @@ discard block |
||
289 | 289 | case 'names': |
290 | 290 | case 'data': |
291 | 291 | if (is_array($this->ribbonBinObjects) && array_key_exists($What, $this->ribbonBinObjects)) { |
292 | - $ReturnData=$this->ribbonBinObjects[$What]; |
|
292 | + $ReturnData = $this->ribbonBinObjects[$What]; |
|
293 | 293 | } |
294 | 294 | break; |
295 | 295 | case 'types': |
296 | 296 | if (is_array($this->ribbonBinObjects) && |
297 | 297 | array_key_exists('data', $this->ribbonBinObjects) && is_array($this->ribbonBinObjects['data'])) { |
298 | - $tmpTypes=array_keys($this->ribbonBinObjects['data']); |
|
298 | + $tmpTypes = array_keys($this->ribbonBinObjects['data']); |
|
299 | 299 | $ReturnData = array_unique(array_map(array($this, 'getExtensionOnly'), $tmpTypes)); |
300 | 300 | } else { |
301 | - $ReturnData=array(); // the caller want an array... not null if empty |
|
301 | + $ReturnData = array(); // the caller want an array... not null if empty |
|
302 | 302 | } |
303 | 303 | break; |
304 | 304 | } |
@@ -787,7 +787,7 @@ discard block |
||
787 | 787 | $this->namedRanges[$namedRange->getName()] = $namedRange; |
788 | 788 | } else { |
789 | 789 | // local scope |
790 | - $this->namedRanges[$namedRange->getScope()->getTitle().'!'.$namedRange->getName()] = $namedRange; |
|
790 | + $this->namedRanges[$namedRange->getScope()->getTitle() . '!' . $namedRange->getName()] = $namedRange; |
|
791 | 791 | } |
792 | 792 | return true; |
793 | 793 | } |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | * |
96 | 96 | * @var string |
97 | 97 | */ |
98 | - protected $builtInFormatCode = 0; |
|
98 | + protected $builtInFormatCode = 0; |
|
99 | 99 | |
100 | 100 | /** |
101 | 101 | * Create a new NumberFormat |
@@ -283,7 +283,7 @@ discard block |
||
283 | 283 | self::$builtInFormats[11] = '0.00E+00'; |
284 | 284 | self::$builtInFormats[12] = '# ?/?'; |
285 | 285 | self::$builtInFormats[13] = '# ??/??'; |
286 | - self::$builtInFormats[14] = 'm/d/yyyy'; // Despite ECMA 'mm-dd-yy'; |
|
286 | + self::$builtInFormats[14] = 'm/d/yyyy'; // Despite ECMA 'mm-dd-yy'; |
|
287 | 287 | self::$builtInFormats[15] = 'd-mmm-yy'; |
288 | 288 | self::$builtInFormats[16] = 'd-mmm'; |
289 | 289 | self::$builtInFormats[17] = 'mmm-yy'; |
@@ -291,17 +291,17 @@ discard block |
||
291 | 291 | self::$builtInFormats[19] = 'h:mm:ss AM/PM'; |
292 | 292 | self::$builtInFormats[20] = 'h:mm'; |
293 | 293 | self::$builtInFormats[21] = 'h:mm:ss'; |
294 | - self::$builtInFormats[22] = 'm/d/yyyy h:mm'; // Despite ECMA 'm/d/yy h:mm'; |
|
294 | + self::$builtInFormats[22] = 'm/d/yyyy h:mm'; // Despite ECMA 'm/d/yy h:mm'; |
|
295 | 295 | |
296 | - self::$builtInFormats[37] = '#,##0_);(#,##0)'; // Despite ECMA '#,##0 ;(#,##0)'; |
|
297 | - self::$builtInFormats[38] = '#,##0_);[Red](#,##0)'; // Despite ECMA '#,##0 ;[Red](#,##0)'; |
|
298 | - self::$builtInFormats[39] = '#,##0.00_);(#,##0.00)'; // Despite ECMA '#,##0.00;(#,##0.00)'; |
|
299 | - self::$builtInFormats[40] = '#,##0.00_);[Red](#,##0.00)'; // Despite ECMA '#,##0.00;[Red](#,##0.00)'; |
|
296 | + self::$builtInFormats[37] = '#,##0_);(#,##0)'; // Despite ECMA '#,##0 ;(#,##0)'; |
|
297 | + self::$builtInFormats[38] = '#,##0_);[Red](#,##0)'; // Despite ECMA '#,##0 ;[Red](#,##0)'; |
|
298 | + self::$builtInFormats[39] = '#,##0.00_);(#,##0.00)'; // Despite ECMA '#,##0.00;(#,##0.00)'; |
|
299 | + self::$builtInFormats[40] = '#,##0.00_);[Red](#,##0.00)'; // Despite ECMA '#,##0.00;[Red](#,##0.00)'; |
|
300 | 300 | |
301 | 301 | self::$builtInFormats[44] = '_("$"* #,##0.00_);_("$"* \(#,##0.00\);_("$"* "-"??_);_(@_)'; |
302 | 302 | self::$builtInFormats[45] = 'mm:ss'; |
303 | 303 | self::$builtInFormats[46] = '[h]:mm:ss'; |
304 | - self::$builtInFormats[47] = 'mm:ss.0'; // Despite ECMA 'mmss.0'; |
|
304 | + self::$builtInFormats[47] = 'mm:ss.0'; // Despite ECMA 'mmss.0'; |
|
305 | 305 | self::$builtInFormats[48] = '##0.0E+0'; |
306 | 306 | self::$builtInFormats[49] = '@'; |
307 | 307 | |
@@ -520,8 +520,8 @@ discard block |
||
520 | 520 | |
521 | 521 | $GCD = \PHPExcel\Calculation\MathTrig::GCD($decimalPart, $decimalDivisor); |
522 | 522 | |
523 | - $adjustedDecimalPart = $decimalPart/$GCD; |
|
524 | - $adjustedDecimalDivisor = $decimalDivisor/$GCD; |
|
523 | + $adjustedDecimalPart = $decimalPart / $GCD; |
|
524 | + $adjustedDecimalDivisor = $decimalDivisor / $GCD; |
|
525 | 525 | |
526 | 526 | if ((strpos($format, '0') !== false) || (strpos($format, '#') !== false) || (substr($format, 0, 3) == '? ?')) { |
527 | 527 | if ($integerPart == 0) { |
@@ -617,13 +617,13 @@ discard block |
||
617 | 617 | break; |
618 | 618 | case 3: |
619 | 619 | $format = ($value > 0) ? |
620 | - $sections[0] : ( ($value < 0) ? |
|
620 | + $sections[0] : (($value < 0) ? |
|
621 | 621 | $sections[1] : $sections[2]); |
622 | 622 | $value = abs($value); // Use the absolute value |
623 | 623 | break; |
624 | 624 | case 4: |
625 | 625 | $format = ($value > 0) ? |
626 | - $sections[0] : ( ($value < 0) ? |
|
626 | + $sections[0] : (($value < 0) ? |
|
627 | 627 | $sections[1] : $sections[2]); |
628 | 628 | $value = abs($value); // Use the absolute value |
629 | 629 | break; |
@@ -684,7 +684,7 @@ discard block |
||
684 | 684 | |
685 | 685 | if (preg_match('/#?.*\?\/\?/', $format, $m)) { |
686 | 686 | //echo 'Format mask is fractional '.$format.' <br />'; |
687 | - if ($value != (int)$value) { |
|
687 | + if ($value != (int) $value) { |
|
688 | 688 | self::formatAsFraction($value, $format); |
689 | 689 | } |
690 | 690 | } else { |
@@ -37,14 +37,14 @@ |
||
37 | 37 | const HORIZONTAL_CENTER_CONTINUOUS = 'centerContinuous'; |
38 | 38 | const HORIZONTAL_JUSTIFY = 'justify'; |
39 | 39 | const HORIZONTAL_FILL = 'fill'; |
40 | - const HORIZONTAL_DISTRIBUTED = 'distributed'; // Excel2007 only |
|
40 | + const HORIZONTAL_DISTRIBUTED = 'distributed'; // Excel2007 only |
|
41 | 41 | |
42 | 42 | /* Vertical alignment styles */ |
43 | 43 | const VERTICAL_BOTTOM = 'bottom'; |
44 | 44 | const VERTICAL_TOP = 'top'; |
45 | 45 | const VERTICAL_CENTER = 'center'; |
46 | 46 | const VERTICAL_JUSTIFY = 'justify'; |
47 | - const VERTICAL_DISTRIBUTED = 'distributed'; // Excel2007 only |
|
47 | + const VERTICAL_DISTRIBUTED = 'distributed'; // Excel2007 only |
|
48 | 48 | |
49 | 49 | /* Read order */ |
50 | 50 | const READORDER_CONTEXT = 0; |
@@ -357,61 +357,61 @@ |
||
357 | 357 | // Indexed colors |
358 | 358 | if (is_null(self::$indexedColors)) { |
359 | 359 | self::$indexedColors = [ |
360 | - 1 => 'FF000000', // System Colour #1 - Black |
|
361 | - 2 => 'FFFFFFFF', // System Colour #2 - White |
|
362 | - 3 => 'FFFF0000', // System Colour #3 - Red |
|
363 | - 4 => 'FF00FF00', // System Colour #4 - Green |
|
364 | - 5 => 'FF0000FF', // System Colour #5 - Blue |
|
365 | - 6 => 'FFFFFF00', // System Colour #6 - Yellow |
|
366 | - 7 => 'FFFF00FF', // System Colour #7- Magenta |
|
367 | - 8 => 'FF00FFFF', // System Colour #8- Cyan |
|
368 | - 9 => 'FF800000', // Standard Colour #9 |
|
369 | - 10 => 'FF008000', // Standard Colour #10 |
|
370 | - 11 => 'FF000080', // Standard Colour #11 |
|
371 | - 12 => 'FF808000', // Standard Colour #12 |
|
372 | - 13 => 'FF800080', // Standard Colour #13 |
|
373 | - 14 => 'FF008080', // Standard Colour #14 |
|
374 | - 15 => 'FFC0C0C0', // Standard Colour #15 |
|
375 | - 16 => 'FF808080', // Standard Colour #16 |
|
376 | - 17 => 'FF9999FF', // Chart Fill Colour #17 |
|
377 | - 18 => 'FF993366', // Chart Fill Colour #18 |
|
378 | - 19 => 'FFFFFFCC', // Chart Fill Colour #19 |
|
379 | - 20 => 'FFCCFFFF', // Chart Fill Colour #20 |
|
380 | - 21 => 'FF660066', // Chart Fill Colour #21 |
|
381 | - 22 => 'FFFF8080', // Chart Fill Colour #22 |
|
382 | - 23 => 'FF0066CC', // Chart Fill Colour #23 |
|
383 | - 24 => 'FFCCCCFF', // Chart Fill Colour #24 |
|
384 | - 25 => 'FF000080', // Chart Line Colour #25 |
|
385 | - 26 => 'FFFF00FF', // Chart Line Colour #26 |
|
386 | - 27 => 'FFFFFF00', // Chart Line Colour #27 |
|
387 | - 28 => 'FF00FFFF', // Chart Line Colour #28 |
|
388 | - 29 => 'FF800080', // Chart Line Colour #29 |
|
389 | - 30 => 'FF800000', // Chart Line Colour #30 |
|
390 | - 31 => 'FF008080', // Chart Line Colour #31 |
|
391 | - 32 => 'FF0000FF', // Chart Line Colour #32 |
|
392 | - 33 => 'FF00CCFF', // Standard Colour #33 |
|
393 | - 34 => 'FFCCFFFF', // Standard Colour #34 |
|
394 | - 35 => 'FFCCFFCC', // Standard Colour #35 |
|
395 | - 36 => 'FFFFFF99', // Standard Colour #36 |
|
396 | - 37 => 'FF99CCFF', // Standard Colour #37 |
|
397 | - 38 => 'FFFF99CC', // Standard Colour #38 |
|
398 | - 39 => 'FFCC99FF', // Standard Colour #39 |
|
399 | - 40 => 'FFFFCC99', // Standard Colour #40 |
|
400 | - 41 => 'FF3366FF', // Standard Colour #41 |
|
401 | - 42 => 'FF33CCCC', // Standard Colour #42 |
|
402 | - 43 => 'FF99CC00', // Standard Colour #43 |
|
403 | - 44 => 'FFFFCC00', // Standard Colour #44 |
|
404 | - 45 => 'FFFF9900', // Standard Colour #45 |
|
405 | - 46 => 'FFFF6600', // Standard Colour #46 |
|
406 | - 47 => 'FF666699', // Standard Colour #47 |
|
407 | - 48 => 'FF969696', // Standard Colour #48 |
|
408 | - 49 => 'FF003366', // Standard Colour #49 |
|
409 | - 50 => 'FF339966', // Standard Colour #50 |
|
410 | - 51 => 'FF003300', // Standard Colour #51 |
|
411 | - 52 => 'FF333300', // Standard Colour #52 |
|
412 | - 53 => 'FF993300', // Standard Colour #53 |
|
413 | - 54 => 'FF993366', // Standard Colour #54 |
|
414 | - 55 => 'FF333399', // Standard Colour #55 |
|
360 | + 1 => 'FF000000', // System Colour #1 - Black |
|
361 | + 2 => 'FFFFFFFF', // System Colour #2 - White |
|
362 | + 3 => 'FFFF0000', // System Colour #3 - Red |
|
363 | + 4 => 'FF00FF00', // System Colour #4 - Green |
|
364 | + 5 => 'FF0000FF', // System Colour #5 - Blue |
|
365 | + 6 => 'FFFFFF00', // System Colour #6 - Yellow |
|
366 | + 7 => 'FFFF00FF', // System Colour #7- Magenta |
|
367 | + 8 => 'FF00FFFF', // System Colour #8- Cyan |
|
368 | + 9 => 'FF800000', // Standard Colour #9 |
|
369 | + 10 => 'FF008000', // Standard Colour #10 |
|
370 | + 11 => 'FF000080', // Standard Colour #11 |
|
371 | + 12 => 'FF808000', // Standard Colour #12 |
|
372 | + 13 => 'FF800080', // Standard Colour #13 |
|
373 | + 14 => 'FF008080', // Standard Colour #14 |
|
374 | + 15 => 'FFC0C0C0', // Standard Colour #15 |
|
375 | + 16 => 'FF808080', // Standard Colour #16 |
|
376 | + 17 => 'FF9999FF', // Chart Fill Colour #17 |
|
377 | + 18 => 'FF993366', // Chart Fill Colour #18 |
|
378 | + 19 => 'FFFFFFCC', // Chart Fill Colour #19 |
|
379 | + 20 => 'FFCCFFFF', // Chart Fill Colour #20 |
|
380 | + 21 => 'FF660066', // Chart Fill Colour #21 |
|
381 | + 22 => 'FFFF8080', // Chart Fill Colour #22 |
|
382 | + 23 => 'FF0066CC', // Chart Fill Colour #23 |
|
383 | + 24 => 'FFCCCCFF', // Chart Fill Colour #24 |
|
384 | + 25 => 'FF000080', // Chart Line Colour #25 |
|
385 | + 26 => 'FFFF00FF', // Chart Line Colour #26 |
|
386 | + 27 => 'FFFFFF00', // Chart Line Colour #27 |
|
387 | + 28 => 'FF00FFFF', // Chart Line Colour #28 |
|
388 | + 29 => 'FF800080', // Chart Line Colour #29 |
|
389 | + 30 => 'FF800000', // Chart Line Colour #30 |
|
390 | + 31 => 'FF008080', // Chart Line Colour #31 |
|
391 | + 32 => 'FF0000FF', // Chart Line Colour #32 |
|
392 | + 33 => 'FF00CCFF', // Standard Colour #33 |
|
393 | + 34 => 'FFCCFFFF', // Standard Colour #34 |
|
394 | + 35 => 'FFCCFFCC', // Standard Colour #35 |
|
395 | + 36 => 'FFFFFF99', // Standard Colour #36 |
|
396 | + 37 => 'FF99CCFF', // Standard Colour #37 |
|
397 | + 38 => 'FFFF99CC', // Standard Colour #38 |
|
398 | + 39 => 'FFCC99FF', // Standard Colour #39 |
|
399 | + 40 => 'FFFFCC99', // Standard Colour #40 |
|
400 | + 41 => 'FF3366FF', // Standard Colour #41 |
|
401 | + 42 => 'FF33CCCC', // Standard Colour #42 |
|
402 | + 43 => 'FF99CC00', // Standard Colour #43 |
|
403 | + 44 => 'FFFFCC00', // Standard Colour #44 |
|
404 | + 45 => 'FFFF9900', // Standard Colour #45 |
|
405 | + 46 => 'FFFF6600', // Standard Colour #46 |
|
406 | + 47 => 'FF666699', // Standard Colour #47 |
|
407 | + 48 => 'FF969696', // Standard Colour #48 |
|
408 | + 49 => 'FF003366', // Standard Colour #49 |
|
409 | + 50 => 'FF339966', // Standard Colour #50 |
|
410 | + 51 => 'FF003300', // Standard Colour #51 |
|
411 | + 52 => 'FF333300', // Standard Colour #52 |
|
412 | + 53 => 'FF993300', // Standard Colour #53 |
|
413 | + 54 => 'FF993366', // Standard Colour #54 |
|
414 | + 55 => 'FF333399', // Standard Colour #55 |
|
415 | 415 | 56 => 'FF333333' // Standard Colour #56 |
416 | 416 | ]; |
417 | 417 | } |