Increase versions
[phpmyadmin-themes.git] / garvblue / layout.inc.php
blob0f48e18ae878eca2a60b5ec789b74154f0b7b307
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Done By Garvin Hicking, http://www.supergarv.de/
6 * @version $Id$
7 * @package phpMyAdmin-theme
8 * @subpackage garvBlue
9 */
11 /**
14 $cfg['LeftWidth'] = 200; // left frame width
15 /* colors */
16 $cfg['LeftBgColor'] = '#E8EAF1'; // background color for the left frame
17 $cfg['RightBgColor'] = '#FAFBFE'; // background color for the right frame
18 $cfg['RightBgImage'] = ''; // path to a background image for the right frame
19 // (leave blank for no background image)
20 $cfg['LeftPointerColor'] = '#E8EAF1'; // color of the pointer in left frame
21 $cfg['Border'] = 0; // border width on tables
22 $cfg['ThBgcolor'] = '#A4ABCA'; // table header row colour
23 $cfg['BgcolorOne'] = '#E2E4ED'; // table data row colour
24 $cfg['BgcolorTwo'] = '#C0C6DF'; // table data row colour, alternate
25 $cfg['BrowsePointerColor'] = '#F4A227'; // color of the pointer in browse mode
26 $cfg['BrowseMarkerColor'] = '#FAFED2'; // color of the marker (visually marks row
27 // by clicking on it) in browse mode
28 /**
29 * SQL Parser Settings
31 $cfg['SQP']['fmtColor'] = array( // Syntax colouring data
32 'comment' => '#808000',
33 'comment_mysql' => '',
34 'comment_ansi' => '',
35 'comment_c' => '',
36 'digit' => '',
37 'digit_hex' => 'teal',
38 'digit_integer' => 'teal',
39 'digit_float' => 'aqua',
40 'punct' => 'fuchsia',
41 'alpha' => '',
42 'alpha_columnType' => '#FF9900',
43 'alpha_columnAttrib' => '#0000FF',
44 'alpha_reservedWord' => '#990099',
45 'alpha_functionName' => '#FF0000',
46 'alpha_identifier' => 'black',
47 'alpha_charset' => '#6495ed',
48 'alpha_variable' => '#800000',
49 'quote' => '#008000',
50 'quote_double' => '',
51 'quote_single' => '',
52 'quote_backtick' => ''