1 <?php
2
3 namespace Docolight\Support\Debug;
4
5 use Symfony\Component\VarDumper\Dumper\HtmlDumper as SymfonyHtmlDumper;
6
7 8 9 10 11
12 class HtmlDumper extends SymfonyHtmlDumper
13 {
14 15 16 17 18
19 protected $styles = [
20 'default' => 'background-color:#222222; color:#F8F8F2; line-height:1.2em; font-weight:normal; font:12px Monaco, Consolas, "Droid Sans Mono", "Ubuntu Mono", monospace; word-wrap: break-word; white-space: pre-wrap; position:relative; z-index:100000; width: 100%; text-align: left !important;',
21 'num' => 'font-weight:bold; color:#ae81ff',
22 'const' => 'font-weight:bold',
23 'str' => 'font-weight:bold; color:#F92672',
24 'cchr' => 'font-style:italic',
25 'note' => 'font-weight:bold; color:#89BDFF',
26 'ref' => 'color:#839496',
27 'solo-ref' => 'color:#839496',
28 'public' => 'color:#E6DB74',
29 'protected' => 'font-style:italic; color:#ff9100',
30 'private' => 'font-style:italic; color:#fd2929',
31 'meta' => 'color:#b729d9',
32 'key' => 'color:#FD5FF1',
33 'index' => 'color:#FD5FF1',
34 ];
35 }
36