@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.)
hq.recaptime.dev/wiki/Phorge
phorge
phabricator
1<?php
2
3final class CelerityRedGreenPostprocessor
4 extends CelerityPostprocessor {
5
6 public function getPostprocessorKey() {
7 return 'redgreen';
8 }
9
10 public function getPostprocessorName() {
11 return pht('Use Red/Green (Deuteranopia) Colors');
12 }
13
14 public function buildVariables() {
15 return array(
16 'new-background' => 'rgba(152, 207, 235, .15)',
17 'new-bright' => 'rgba(152, 207, 235, .35)',
18 'old-background' => 'rgba(250, 212, 175, .3)',
19 'old-bright' => 'rgba(250, 212, 175, .55)',
20
21 'delete-color' => '#e67e22',
22 'create-color' => '#2980b9',
23 );
24 }
25
26}