Rev Author Line No. Line
250 kaklik 1 <?php
2  
3 $cfg['LeftWidth'] = 180; // left frame width
4 /* colors */
5 $cfg['LeftBgColor'] = '#666699'; // background color for the left frame
6 $cfg['RightBgColor'] = '#FFFFFF'; // background color for the right frame
7 $cfg['RightBgImage'] = ''; // path to a background image for the right frame
8 // (leave blank for no background image)
9 $cfg['LeftPointerColor'] = '#9999CC'; // color of the pointer in left frame
10 $cfg['Border'] = 0; // border width on tables
11 $cfg['ThBgcolor'] = '#666699'; // table header row colour
12 $cfg['BgcolorOne'] = '#EEEEEE'; // table data row colour
13 $cfg['BgcolorTwo'] = '#E5E5E5'; // table data row colour, alternate
14 $cfg['BrowsePointerColor'] = '#CCCCFF'; // color of the pointer in browse mode
15 $cfg['BrowseMarkerColor'] = '#FFCC99'; // color of the marker (visually marks row
16 // by clicking on it) in browse mode
17  
18 $cfg['QueryWindowWidth'] = 600; // Width of Query window
19 $cfg['QueryWindowHeight'] = 400; // Height of Query window
20  
21 /**
22 * SQL Parser Settings
23 */
24 $cfg['SQP']['fmtColor'] = array( // Syntax colouring data
25 'comment' => '#808000',
26 'comment_mysql' => '',
27 'comment_ansi' => '',
28 'comment_c' => '',
29 'digit' => '',
30 'digit_hex' => 'teal',
31 'digit_integer' => 'teal',
32 'digit_float' => 'aqua',
33 'punct' => 'fuchsia',
34 'alpha' => '',
35 'alpha_columnType' => '#FF9900',
36 'alpha_columnAttrib' => '#0000FF',
37 'alpha_reservedWord' => '#990099',
38 'alpha_functionName' => '#FF0000',
39 'alpha_identifier' => 'black',
40 'alpha_charset' => '#6495ed',
41 'alpha_variable' => '#800000',
42 'quote' => '#008000',
43 'quote_double' => '',
44 'quote_single' => '',
45 'quote_backtick' => ''
46 );
47 ?>