Update for 3.4.
[phpmyadmin-themes.git] / pixeline / layout.inc.php
blob81724ddfac7686a95a592305a8161b79549be47e
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * configures general layout
5 * for detailed layout configuration please refer to the css files
7 * @version $Id$
8 * @package phpMyAdmin-theme
9 * @subpackage Pixeline
12 /**
13 * navi frame
16 $cfg['LeftWidth'] = 250; // left frame width
17 /* colors */
18 $cfg['LeftBgColor'] = '#ededed'; // background color for the left frame
19 $cfg['RightBgColor'] = '#ededed'; // background color for the right frame
20 $cfg['RightBgImage'] = ''; // path to a background image for the right frame
21 // (leave blank for no background image)
22 $cfg['LeftPointerColor'] = '#525252'; // color of the pointer in left frame
23 $cfg['Border'] = 0; // border width on tables
24 $cfg['ThBgcolor'] = '#DEDEDE'; // table header row colour
25 $cfg['BgcolorOne'] = '#F3F3F3'; // table data row colour
26 $cfg['BgcolorTwo'] = '#FFFFFF'; // table data row colour, alternate
27 $cfg['BrowsePointerColor'] = '#ffffd7'; // color of the pointer in browse mode
28 $cfg['BrowseMarkerColor'] = '#ffffd7'; // color of the marker (visually marks row
29 // by clicking on it) in browse mode
30 $right_font_family = 'Tahoma, Arial, Helvetica, Verdana, sans-serif';
31 $font_size = '11px';
32 /**
33 * SQL Parser Settings
35 $cfg['SQP']['fmtColor'] = array( // Syntax colouring data
36 'comment' => '#808000',
37 'comment_mysql' => '',
38 'comment_ansi' => '',
39 'comment_c' => '',
40 'digit' => '',
41 'digit_hex' => 'teal',
42 'digit_integer' => 'teal',
43 'digit_float' => 'aqua',
44 'punct' => 'fuchsia',
45 'alpha' => '',
46 'alpha_columnType' => '#FF9900',
47 'alpha_columnAttrib' => '#0000FF',
48 'alpha_reservedWord' => '#990099',
49 'alpha_functionName' => '#FF0000',
50 'alpha_identifier' => 'black',
51 'alpha_charset' => '#6495ed',
52 'alpha_variable' => '#800000',
53 'quote' => '#008000',
54 'quote_double' => '',
55 'quote_single' => '',
56 'quote_backtick' => ''