Increase versions
[phpmyadmin-themes.git] / aqua / layout.inc.php
blob28e8467d38a1aca3e764192899b0e7566bda72ee
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 Aqua
12 /**
13 * navi frame
15 // navi frame width
16 $GLOBALS['cfg']['NaviWidth'] = 175;
18 // foreground (text) color for the navi frame
19 $GLOBALS['cfg']['NaviColor'] = '#ffffff';
21 // background for the navi frame
22 $GLOBALS['cfg']['NaviBackground'] = '#3E7BB6 right repeat-y url(' . $_SESSION['PMA_Theme']->getImgPath() . 'bg_aquaGrad.png)';
24 // color of the pointer in navi frame
25 $GLOBALS['cfg']['NaviPointerColor'] = 'Navy';
27 /**
28 * main frame
30 // foreground (text) color for the main frame
31 $GLOBALS['cfg']['MainColor'] = '#000000';
33 // background for the main frame
34 //$GLOBALS['cfg']['MainBackground'] = '#3E7BB6 right repeat url(' . $_SESSION['PMA_Theme']->getImgPath() . 'bg_main.png)';
35 $GLOBALS['cfg']['MainBackground'] = 'white';
37 // color of the pointer in browse mode
38 $GLOBALS['cfg']['BrowsePointerColor'] = '#DAEAFF';
40 // color of the marker (visually marks row by clicking on it) in browse mode
41 $GLOBALS['cfg']['BrowseMarkerColor'] = '#B5D5FF';
43 /**
44 * fonts
46 /**
47 * the font family as a valid css font family value,
48 * if not set the browser default will be used
49 * (depending on browser, DTD and system settings)
51 $GLOBALS['cfg']['FontFamily'] = '';
52 /**
53 * fixed width font family, used in textarea
55 $GLOBALS['cfg']['FontFamilyFixed'] = 'monospace';
56 /**
57 * font size as a valid css font size value,
58 * if not set the browser default will be used
59 * (depending on browser, DTD and system settings)
61 $GLOBALS['cfg']['FontSize'] = '';
63 /**
64 * tables
66 // border
67 $GLOBALS['cfg']['Border'] = 0;
68 // table header and footer color
69 $GLOBALS['cfg']['ThBackground'] = '#cacaca repeat-x url(' . $_SESSION['PMA_Theme']->getImgPath() . 'bg_tblHeaders.png)';
70 // table header and footer background
71 $GLOBALS['cfg']['ThColor'] = '#000000';
72 // table data row background
73 $GLOBALS['cfg']['BgOne'] = '#e9e9e9';
74 // table data row background, alternate
75 $GLOBALS['cfg']['BgTwo'] = '#FAFAFA';
77 /**
78 * query window
80 // Width of Query window
81 $GLOBALS['cfg']['QueryWindowWidth'] = 550;
82 // Height of Query window
83 $GLOBALS['cfg']['QueryWindowHeight'] = 310;
85 /**
86 * SQL Parser Settings
87 * Syntax colouring data
89 $GLOBALS['cfg']['SQP']['fmtColor'] = array(
90 'comment' => '#808000',
91 'comment_mysql' => '',
92 'comment_ansi' => '',
93 'comment_c' => '',
94 'digit' => '',
95 'digit_hex' => 'teal',
96 'digit_integer' => 'teal',
97 'digit_float' => 'aqua',
98 'punct' => 'fuchsia',
99 'alpha' => '',
100 'alpha_columnType' => '#FF9900',
101 'alpha_columnAttrib' => '#0000FF',
102 'alpha_reservedWord' => '#990099',
103 'alpha_functionName' => '#FF0000',
104 'alpha_identifier' => 'black',
105 'alpha_charset' => '#6495ed',
106 'alpha_variable' => '#800000',
107 'quote' => '#008000',
108 'quote_double' => '',
109 'quote_single' => '',
110 'quote_backtick' => ''