Increase theme version
[phpmyadmin-themes.git] / pmahomme / layout.inc.php
blob604982aeb2874fe43b7b1254a46b3491ce5615e5
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 * @package phpMyAdmin-theme
8 * @subpackage Original
9 */
11 /**
12 * navi frame
14 // navi frame width
15 $GLOBALS['cfg']['NaviWidth'] = 200;
17 // foreground (text) color for the navi frame
18 $GLOBALS['cfg']['NaviColor'] = '#000000';
20 // background for the navi frame
21 $GLOBALS['cfg']['NaviBackground'] = '#D0DCE0';
23 // foreground (text) color of the pointer in navi frame
24 $GLOBALS['cfg']['NaviPointerColor'] = '#000000';
25 // background of the pointer in navi frame
26 $GLOBALS['cfg']['NaviPointerBackground'] = '#9999CC';
27 // text color of the selected database name (when showing the table list)
28 $GLOBALS['cfg']['NaviDatabaseNameColor'] = '#0000FF';
30 /**
31 * main frame
33 // foreground (text) color for the main frame
34 $GLOBALS['cfg']['MainColor'] = '#000000';
36 // background for the main frame
37 $GLOBALS['cfg']['MainBackground'] = '#F5F5F5';
38 //$GLOBALS['cfg']['MainBackground'] = '#F5F5F5 url(' . $_SESSION['PMA_Theme']->getImgPath() . 'vertical_line.png) repeat-y';
40 // foreground (text) color of the pointer in browse mode
41 $GLOBALS['cfg']['BrowsePointerColor'] = '#000000';
43 // background of the pointer in browse mode
44 $GLOBALS['cfg']['BrowsePointerBackground'] = '#CCFFCC';
46 // foreground (text) color of the marker (visually marks row by clicking on it) in browse mode
47 $GLOBALS['cfg']['BrowseMarkerColor'] = '#000000';
49 // background of the marker (visually marks row by clicking on it) in browse mode
50 $GLOBALS['cfg']['BrowseMarkerBackground'] = '#FFCC99';
52 /**
53 * fonts
55 /**
56 * the font family as a valid css font family value,
57 * if not set the browser default will be used
58 * (depending on browser, DTD and system settings)
60 $GLOBALS['cfg']['FontFamily'] = 'sans-serif';
61 /**
62 * fixed width font family, used in textarea
64 $GLOBALS['cfg']['FontFamilyFixed'] = 'monospace';
66 /**
67 * tables
69 // border
70 $GLOBALS['cfg']['Border'] = 0;
71 // table header and footer color
72 $GLOBALS['cfg']['ThBackground'] = '#D3DCE3';
73 // table header and footer background
74 $GLOBALS['cfg']['ThColor'] = '#000000';
75 // table data row background
76 $GLOBALS['cfg']['BgOne'] = '#E5E5E5';
77 // table data row background, alternate
78 $GLOBALS['cfg']['BgTwo'] = '#D5D5D5';
80 /**
81 * query window
83 // Width of Query window
84 $GLOBALS['cfg']['QueryWindowWidth'] = 600;
85 // Height of Query window
86 $GLOBALS['cfg']['QueryWindowHeight'] = 400;
88 /**
89 * SQL Parser Settings
90 * Syntax colouring data
92 $GLOBALS['cfg']['SQP']['fmtColor'] = array(
93 'comment' => '#808000',
94 'comment_mysql' => '',
95 'comment_ansi' => '',
96 'comment_c' => '',
97 'digit' => '',
98 'digit_hex' => 'teal',
99 'digit_integer' => 'teal',
100 'digit_float' => 'aqua',
101 'punct' => 'fuchsia',
102 'alpha' => '',
103 'alpha_columnType' => '#FF9900',
104 'alpha_columnAttrib' => '#0000FF',
105 'alpha_reservedWord' => '#990099',
106 'alpha_functionName' => '#FF0000',
107 'alpha_identifier' => 'black',
108 'alpha_charset' => '#6495ed',
109 'alpha_variable' => '#800000',
110 'quote' => '#008000',
111 'quote_double' => '',
112 'quote_single' => '',
113 'quote_backtick' => ''