Style changes for table/db operations pages
[phpmyadmin-themes.git] / graphivore / layout.inc.php
blob51d3ad2b415fca713d83a9c633cdd0bfeb629556
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
5 * @version $Id$
6 * @package phpMyAdmin-theme
7 * @subpackage Graphivore
8 */
10 /**
13 $cfg['LeftWidth'] = 200; // left frame width
14 /* colors */
15 $cfg['LeftBgColor'] = '#AB9C72'; // background color for the left frame
16 $cfg['RightBgColor'] = '#FFE7B3'; // 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'] = '#F3DDC5'; // color of the pointer in left frame
20 $cfg['Border'] = 0; // border width on tables
21 $cfg['ThBgcolor'] = '#FFE7B3'; // table header row colour
22 $cfg['BgcolorOne'] = '#FFFAEF'; // table data row colour
23 $cfg['BgcolorTwo'] = '#FFF3DB'; // table data row colour, alternate
24 $cfg['BrowsePointerColor'] = '#F3DDC5'; // color of the pointer in browse mode
25 $cfg['BrowseMarkerColor'] = '#F3E3D6'; // 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' => '#B36448',
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' => ''