Increase versions
[phpmyadmin-themes.git] / green_orange / layout.inc.php
blobb927ded6b283795fb4529a68ee161196307e9f7b
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
5 * @version $Id$
6 * @package phpMyAdmin-theme
7 * @subpackage Green_Orange
8 */
10 /**
13 $cfg['LeftWidth'] = 180; // left frame width
14 /* colors */
15 $cfg['LeftBgColor'] = '#31736B'; // background color for the left frame
16 $cfg['RightBgColor'] = '#FFFFFF'; // background color for the right frame
17 $cfg['RightBgImage'] = ''; // path to a background image for the right frame
18 // (leave blank for no background image)
19 $cfg['LeftPointerColor'] = '#4EAD9A'; // color of the pointer in left frame
20 $cfg['Border'] = 0; // border width on tables
21 $cfg['ThBgcolor'] = '#337569'; // table header row colour
22 $cfg['BgcolorOne'] = '#EEEEEE'; // table data row colour
23 $cfg['BgcolorTwo'] = '#E5E5E5'; // table data row colour, alternate
24 $cfg['BrowsePointerColor'] = '#ABDAD1'; // color of the pointer in browse mode
25 $cfg['BrowseMarkerColor'] = '#FFCC99'; // color of the marker (visually marks row
26 // by clicking on it) in browse mode
28 $cfg['QueryWindowWidth'] = 550; // Width of Query window
29 $cfg['QueryWindowHeight'] = 310; // Height of Query window
31 /**
32 * SQL Parser Settings
34 $cfg['SQP']['fmtColor'] = array( // Syntax colouring data
35 'comment' => '#808000',
36 'comment_mysql' => '',
37 'comment_ansi' => '',
38 'comment_c' => '',
39 'digit' => '',
40 'digit_hex' => 'teal',
41 'digit_integer' => 'teal',
42 'digit_float' => 'aqua',
43 'punct' => 'fuchsia',
44 'alpha' => '',
45 'alpha_columnType' => '#FF9900',
46 'alpha_columnAttrib' => '#0000FF',
47 'alpha_reservedWord' => '#990099',
48 'alpha_functionName' => '#FF0000',
49 'alpha_identifier' => 'black',
50 'alpha_charset' => '#6495ed',
51 'alpha_variable' => '#800000',
52 'quote' => '#008000',
53 'quote_double' => '',
54 'quote_single' => '',
55 'quote_backtick' => ''