Home
last modified time | relevance | path

Searched refs:colors (Results 1 – 25 of 279) sorted by relevance

12345678910>>...12

/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/
DText.php29 private $colors = [ variable in SebastianBergmann\\CodeCoverage\\Report\\Text
64 $colors = [
74 $colors['classes'] = $this->getCoverageColor(
78 $colors['methods'] = $this->getCoverageColor(
82 $colors['lines'] = $this->getCoverageColor(
86 $colors['reset'] = $this->colors['reset'];
87 $colors['header'] = $this->colors['header'];
88 $colors['eol'] = $this->colors['eol'];
130 $output .= $this->format($colors['header'], $padding, $title);
135 $output .= $this->format($colors['header'], $padding, $title);
[all …]
/plugin/calendar/
Dadmin.php176 $colors = $this->getTemplateColors();
180 … echo '<div style="border-bottom:2px solid ' . $colors['border'] . '; margin:10px 0 15px 0;">';
181 …px; text-decoration:none; color:' . ($tab === 'manage' ? $accentColor : $colors['text']) . '; bord…
182 …px; text-decoration:none; color:' . ($tab === 'update' ? $accentColor : $colors['text']) . '; bord…
183 …px; text-decoration:none; color:' . ($tab === 'config' ? $accentColor : $colors['text']) . '; bord…
184 …px; text-decoration:none; color:' . ($tab === 'google' ? $accentColor : $colors['text']) . '; bord…
185 …px; text-decoration:none; color:' . ($tab === 'themes' ? $accentColor : $colors['text']) . '; bord…
190 $this->renderConfigTab($colors);
192 $this->renderManageTab($colors);
194 $this->renderThemesTab($colors);
[all …]
/plugin/upgrade/myvendor/splitbrain/php-cli/src/
DTableFormatter.php22 protected $colors; variable in splitbrain\\phpcli\\TableFormatter
27 * @param Colors|null $colors
29 public function __construct(Colors $colors = null) argument
37 if ($colors) {
38 $this->colors = $colors;
40 $this->colors = new Colors();
185 … * @param array $colors A list of color names to use for each column. use empty string for default
189 public function format($columns, $texts, $colors = array()) argument
215 if (isset($colors[$col]) && $colors[$col]) {
216 $chunk = $this->colors->wrap($chunk, $colors[$col]);
[all …]
DOptions.php32 protected $colors; variable in splitbrain\\phpcli\\Options
40 * @param Colors $colors optional configured color object
43 public function __construct(?Colors $colors = null) argument
45 if (!is_null($colors)) {
46 $this->colors = $colors;
48 $this->colors = new Colors();
365 $tf = new TableFormatter($this->colors);
377 $text .= $this->colors->wrap('USAGE:', Colors::C_BROWN);
383 $text .= $this->colors->wrap(' ' . $command, Colors::C_PURPLE);
388 $text .= ' ' . $this->colors->wrap('<OPTIONS>', Colors::C_GREEN);
[all …]
DBase.php22 public $colors; variable in splitbrain\\phpcli\\Base
98 $this->colors = new Colors();
99 $this->options = new Options($this->colors);
166 …'Minimum level of messages to display. Default is ' . $this->colors->wrap($this->logdefault, Color…
179 $this->colors->disable();
303 if ($this->colors->isEnabled()) {
307 $this->colors->ptln($message, $info['color'], $info['channel']);
/plugin/newpagetemplate/
Dcli.php14 $config = $this->colors->wrap('config', 'cyan');
15 $pg = $this->colors->wrap('page', 'cyan');
16 $ini = $this->colors->wrap('ini', 'cyan');
17 $browser = $this->colors->wrap('browser', 'cyan');
18 $cmdLine = $this->colors->wrap('cmdLine', 'cyan');
19 $browser = $this->colors->wrap('browser', 'cyan');
20 $nosave = $this->colors->wrap('true', 'cyan');
21 $false = $this->colors->wrap('false', 'cyan');
22 $existing = $this->colors->wrap('existing', 'cyan');
151 $this->colors->ptln("$type error: page id required", 'cyan');
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudRetail/
DGoogleCloudRetailV2ColorInfo.php30 public $colors; variable in Google\\Service\\CloudRetail\\GoogleCloudRetailV2ColorInfo
49 public function setColors($colors) argument
51 $this->colors = $colors;
58 return $this->colors;
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/
DColor.php17 static $colors = null;
18 if ($colors === null) {
19 $colors = $config->get('Core.ColorKeywords');
28 if (isset($colors[$lower])) {
29 return $colors[$lower];
/plugin/findologicxmlexport/vendor/twig/twig/src/Profiler/Dumper/
DHtmlDumper.php23 private static $colors = [ variable in Twig\\Profiler\\Dumper\\HtmlDumper
37 …return sprintf('%s└ <span style="background-color: %s">%s</span>', $prefix, self::$colors['templat…
42 …ile->getTemplate(), $profile->getType(), isset(self::$colors[$profile->getType()]) ? self::$colors
47 …f('<span style="color: %s">%.2fms/%.0f%%</span>', $percent > 20 ? self::$colors['big'] : 'auto', $…
/plugin/dokugource/
Dadmin.php22 var $colors = array(); variable in admin_plugin_dokugource
97 $this->colors = array();
101 $this->colors[$l[0]] = $l[1];
121 if(isset($this->colors[$p])) return $this->colors[$p];
122 if(isset($this->colors[$ns])) return $this->colors[$ns];
124 $this->colors[$p] = sprintf('%02X%02X%02X', rand(0, 255), rand(0, 255), rand(0, 255));
125 return $this->colors[$p];
Daction.php18 var $colors = array(); variable in action_plugin_dokugource
99 $this->colors = array();
103 $this->colors[$l[0]] = $l[1];
119 if(isset($this->colors[$p])) return $this->colors[$p];
120 if(isset($this->colors[$ns])) return $this->colors[$ns];
122 $this->colors[$p] = sprintf('%02X%02X%02X', rand(0, 255), rand(0, 255), rand(0, 255));
123 return $this->colors[$p];
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Vision/
DGoogleCloudVisionV1p3beta1DominantColorsAnnotation.php29 public function setColors($colors) argument
31 $this->colors = $colors;
38 return $this->colors;
DGoogleCloudVisionV1p4beta1DominantColorsAnnotation.php29 public function setColors($colors) argument
31 $this->colors = $colors;
38 return $this->colors;
DDominantColorsAnnotation.php29 public function setColors($colors) argument
31 $this->colors = $colors;
38 return $this->colors;
DGoogleCloudVisionV1p2beta1DominantColorsAnnotation.php29 public function setColors($colors) argument
31 $this->colors = $colors;
38 return $this->colors;
DGoogleCloudVisionV1p1beta1DominantColorsAnnotation.php29 public function setColors($colors) argument
31 $this->colors = $colors;
38 return $this->colors;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Slides/
DColorScheme.php29 public function setColors($colors) argument
31 $this->colors = $colors;
38 return $this->colors;
/plugin/tabinclude/
Dstyle.css4 * Colors corresponds to template's colors in style.ini.
25 -moz-border-bottom-colors: none;
26 -moz-border-left-colors: none;
27 -moz-border-right-colors: none;
28 -moz-border-top-colors: none;
72 -moz-border-bottom-colors: none;
73 -moz-border-left-colors: none;
74 -moz-border-right-colors: none;
75 -moz-border-top-colors: none;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AdSenseHost/
DAdStyle.php38 public function setColors(AdStyleColors $colors) argument
40 $this->colors = $colors;
47 return $this->colors;
/plugin/statdisplay/pchart/
DPalette.php10 public $colors = array(); variable in Palette
15 $palette->colors = array('0' => new Color(188, 224, 46 ),
35 $palette->colors[$i] = new Color($color1->getR() + $RFactor * $i,
44 $this->colors[$id] = $color;
/plugin/html2pdf/html2pdf/html2ps/
Dcss.border.color.inc.php83 $colors = $this->parse_in($value);
85 return new BorderColor($colors[0],
86 $colors[1],
87 $colors[2],
88 $colors[3]);
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/
DColor.php27 static $colors = null;
28 if ($colors === null) {
29 $colors = $config->get('Core.ColorKeywords');
38 if (isset($colors[$lower])) {
39 return $colors[$lower];
/plugin/projects/plugins/target/
Dplot.php137 $colors = array();
143 $colors[$name] = array('R' => 0, 'G' => 0, 'B' => 0);
144 else $colors[$name] = html_color_to_RGB($line_color);
145 $plot->setColorPalette($line_no, $colors[$name]['R'],
146 $colors[$name]['G'], $colors[$name]['B']);
181 $plot->setColorPalette($palette_id, $colors[$name]['R'],
182 $colors[$name]['G'], $colors[$name]['B']);
/plugin/dev/
Dcli.php43 $item = $this->colors->wrap($item, $this->colors::C_BROWN);
60 $item = $this->colors->wrap($item, $this->colors::C_BROWN);
470 if ($this->colors->isEnabled()) {
471 $colors = 'always';
473 $colors = 'never';
485 "--colors=$colors",
513 ($this->colors->isEnabled()) ? '--colors' : '--no-colors',
541 ($this->colors->isEnabled()) ? '--ansi' : '--no-ansi',
564 ($this->colors->isEnabled()) ? '--colors' : '--no-colors',
/plugin/mp3play/
Dsyntax.php93 $colors = array();
101 $colors[trim($key)] = trim($color);
104 if(!empty($colors)) {
105 foreach($colors as $key => $color) {

12345678910>>...12