Path: blob/master/src/applications/celerity/postprocessor/CelerityHighContrastPostprocessor.php
12256 views
<?php12final class CelerityHighContrastPostprocessor3extends CelerityPostprocessor {45public function getPostprocessorKey() {6return 'contrast';7}89public function getPostprocessorName() {10return pht('Use High Contrast Colors');11}1213public function buildVariables() {14return array(15'blue' => '#226B9B',16'sky' => '#226B9B',17'anchor' => '#226B9B',1819'thinblueborder' => '#BFCFDA',20'lightblueborder' => '#8C98B8',21'blueborder' => '#626E82',22'timeline' => '#8C98B8',2324'lightgreyborder' => '#555',25'greyborder' => '#333',2627'lightbluetext' => '#555',28'bluetext' => '#333',29'darkbluetext' => '#000',3031'lightgreytext' => '#555',32'greytext' => '#333',33'darkgreytext' => '#000',3435'sh-redtext' => '#333',36'sh-redborder' => '#777',3738'sh-greentext' => '#333',39'sh-greenborder' => '#777',4041'sh-bluetext' => '#333',42'sh-blueborder' => '#777',4344'sh-yellowtext' => '#333',45'sh-yellowborder' => '#777',4647'sh-orangetext' => '#333',48'sh-orangeborder' => '#777',4950'sh-violettext' => '#333',51'sh-violetborder' => '#777',5253'sh-indigotext' => '#333',54'sh-indigoborder' => '#777',5556'sh-pinktext' => '#333',57'sh-pinkborder' => '#777',5859'sh-greytext' => '#333',60'sh-greyborder' => '#777',6162'sh-disabledtext' => '#555',63'sh-disabledborder' => '#777',646566);67}6869}707172