Home
last modified time | relevance | path

Searched full:colors (Results 1 – 25 of 725) sorted by relevance

12345678910>>...29

/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/upgrade/myvendor/splitbrain/php-cli/src/
DBase.php21 /** @var Colors */
22 public $colors; variable in splitbrain\\phpcli\\Base
28 'color' => Colors::C_RESET,
34 'color' => Colors::C_CYAN,
40 'color' => Colors::C_CYAN,
46 'color' => Colors::C_GREEN,
52 'color' => Colors::C_BROWN,
58 'color' => Colors::C_RED,
64 'color' => Colors::C_LIGHTRED,
70 'color' => Colors::C_LIGHTRED,
[all …]
DTableFormatter.php21 /** @var Colors for coloring output */
22 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]) {
[all …]
DOptions.php31 /** @var Colors for colored help output */
32 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);
[all …]
DColors.php6 * Class Colors
13 class Colors class
38 protected $colors = array( variable in splitbrain\\phpcli\\Colors
58 /** @var bool should colors be used? */
64 * Tries to disable colors for non-terminals
147 if (!isset($this->colors[$color])) {
151 return $this->colors[$color];
/plugin/asciidocjs/node_modules/chalk/
Dindex.d.ts2 Basic foreground colors.
4 [More colors here.](https://github.com/chalk/chalk/blob/master/readme.md#256-and-truecolor-color-su…
27 Basic background colors.
29 [More colors here.](https://github.com/chalk/chalk/blob/master/readme.md#256-and-truecolor-color-su…
52 Basic colors.
54 [More colors here.](https://github.com/chalk/chalk/blob/master/readme.md#256-and-truecolor-color-su…
72 - `0` - All colors disabled.
73 - `1` - Basic 16 colors support.
74 - `2` - ANSI 256 colors support.
75 - `3` - Truecolor 16 million colors support.
[all …]
/plugin/aichat/
Dcli.php8 use splitbrain\phpcli\Colors; alias
158 $tf = new TableFormatter($this->colors);
164 [Colors::C_LIGHTBLUE, Colors::C_LIGHTBLUE, Colors::C_LIGHTBLUE]
171 [Colors::C_LIGHTBLUE, Colors::C_LIGHTBLUE, Colors::C_LIGHTGRAY]
219 $this->colors->ptln('--------------------------------', Colors::C_LIGHTPURPLE);
238 $this->colors->ptln("Interpretation: {$result['question']}", Colors::C_LIGHTPURPLE);
253 $td = new TableFormatter($this->colors);
259 [Colors::C_LIGHTBLUE, Colors::C_LIGHTBLUE, Colors::C_LIGHTBLUE, Colors::C_LIGHTBLUE]
271 $info['instance'] ? Colors::C_LIGHTGREEN : Colors::C_LIGHTRED,
281 …[Colors::C_LIGHTBLUE, Colors::C_LIGHTBLUE, Colors::C_LIGHTBLUE, Colors::C_LIGHTBLUE, Colors::C_LIG…
[all …]
/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/combo/resources/dictionary/
H A Dbrands.json13 "colors": { object
36 "colors": { object
53 "colors": { object
71 "colors": { object
80 "colors": { object
98 "colors": { object
109 "colors": { object
123 "colors": { object
142 "colors": { object
153 "colors": { object
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Calendar/Resource/
DColors.php20 use Google\Service\Calendar\Colors as ColorsModel;
23 * The "colors" collection of methods.
27 * $colors = $calendarService->colors;
30 class Colors extends \Google\Service\Resource class
33 * Returns the color definitions for calendars and events. (colors.get)
47 class_alias(Colors::class, 'Google_Service_Calendar_Resource_Colors');
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudRetail/
DGoogleCloudRetailV2ColorInfo.php22 protected $collection_key = 'colors';
30 public $colors; variable in Google\\Service\\CloudRetail\\GoogleCloudRetailV2ColorInfo
49 public function setColors($colors) argument
51 $this->colors = $colors;
58 return $this->colors;
/plugin/newpagetemplate/
Dcli.php13 // $this->colors->disable();
14 $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');
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Vision/
DGoogleCloudVisionV1p3beta1DominantColorsAnnotation.php22 protected $collection_key = 'colors';
29 public function setColors($colors) argument
31 $this->colors = $colors;
38 return $this->colors;
DGoogleCloudVisionV1p4beta1DominantColorsAnnotation.php22 protected $collection_key = 'colors';
29 public function setColors($colors) argument
31 $this->colors = $colors;
38 return $this->colors;
DDominantColorsAnnotation.php22 protected $collection_key = 'colors';
29 public function setColors($colors) argument
31 $this->colors = $colors;
38 return $this->colors;
DGoogleCloudVisionV1p2beta1DominantColorsAnnotation.php22 protected $collection_key = 'colors';
29 public function setColors($colors) argument
31 $this->colors = $colors;
38 return $this->colors;
DGoogleCloudVisionV1p1beta1DominantColorsAnnotation.php22 protected $collection_key = 'colors';
29 public function setColors($colors) argument
31 $this->colors = $colors;
38 return $this->colors;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Slides/
DColorScheme.php22 protected $collection_key = 'colors';
29 public function setColors($colors) argument
31 $this->colors = $colors;
38 return $this->colors;
/plugin/emphasis/lang/en/
Dsettings.php3 $lang['colors'] = 'Font colors, ordered from low to high';
4 $lang['background-colors'] = 'Background colors, ordered from low to high';
/plugin/dokugource/
Daction.php18 var $colors = array(); variable in action_plugin_dokugource
49 $ls = preg_split('`\n+`', trim(@file_get_contents($conf['metadir'].'/gource.colors')));
50 if($fp = fopen($conf['metadir'].'/gource.colors', 'w')) {
99 $this->colors = array();
100 foreach(preg_split('`\n+`', trim(@file_get_contents($conf['metadir'].'/gource.colors'))) as $l) {
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/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/minimap/
Dstyle.css35 -moz-border-bottom-colors: none;
36 -moz-border-left-colors: none;
37 -moz-border-right-colors: none;
38 -moz-border-top-colors: none;
95 -moz-border-bottom-colors: none;
96 -moz-border-left-colors: none;
97 -moz-border-right-colors: none;
98 -moz-border-top-colors: none;
/plugin/combo/resources/theme/default/components/css/
H A Dminimap.css33 -moz-border-bottom-colors: none;
34 -moz-border-left-colors: none;
35 -moz-border-right-colors: none;
36 -moz-border-top-colors: none;
90 -moz-border-bottom-colors: none;
91 -moz-border-left-colors: none;
92 -moz-border-right-colors: none;
93 -moz-border-top-colors: none;
/plugin/asciidocjs/node_modules/ansi-styles/
Dreadme.md24 // NOTE: If conversion goes to 16 colors or 256 colors, the original color
26 // that do not support 16 million colors will best-match the
50 ### Colors subsection
69 ### Background colors
113 …ge to allow for converting between various colors and ANSI escapes, with support for 256 and 16 mi…

12345678910>>...29