Upgraded phpmyadmin to 4.0.4 (All Languages) - No modifications yet
[openemr.git] / phpmyadmin / themes / original / layout.inc.php
blob46e2f01ec668b5398a37bb1b946a6d13d71ec2ca
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'] = 240;
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';
28 /**
29 * main frame
31 // foreground (text) color for the main frame
32 $GLOBALS['cfg']['MainColor'] = '#000000';
34 // background for the main frame
35 $GLOBALS['cfg']['MainBackground'] = '#F5F5F5';
37 // foreground (text) color of the pointer in browse mode
38 $GLOBALS['cfg']['BrowsePointerColor'] = '#000000';
40 // background of the pointer in browse mode
41 $GLOBALS['cfg']['BrowsePointerBackground'] = '#CCFFCC';
43 // foreground (text) color of the marker (visually marks row by clicking on it)
44 // in browse mode
45 $GLOBALS['cfg']['BrowseMarkerColor'] = '#000000';
47 // background of the marker (visually marks row by clicking on it) in browse mode
48 $GLOBALS['cfg']['BrowseMarkerBackground'] = '#FFCC99';
50 /**
51 * fonts
53 /**
54 * the font family as a valid css font family value,
55 * if not set the browser default will be used
56 * (depending on browser, DTD and system settings)
58 $GLOBALS['cfg']['FontFamily'] = 'sans-serif';
59 /**
60 * fixed width font family, used in textarea
62 $GLOBALS['cfg']['FontFamilyFixed'] = 'monospace';
64 /**
65 * tables
67 // border
68 $GLOBALS['cfg']['Border'] = 0;
69 // table header and footer color
70 $GLOBALS['cfg']['ThBackground'] = '#D3DCE3';
71 // table header and footer background
72 $GLOBALS['cfg']['ThColor'] = '#000000';
73 // table data row background
74 $GLOBALS['cfg']['BgOne'] = '#E5E5E5';
75 // table data row background, alternate
76 $GLOBALS['cfg']['BgTwo'] = '#D5D5D5';
78 /**
79 * query window
81 // Width of Query window
82 $GLOBALS['cfg']['QueryWindowWidth'] = 600;
83 // Height of Query window
84 $GLOBALS['cfg']['QueryWindowHeight'] = 400;
86 /**
87 * SQL Parser Settings
88 * Syntax colouring data
90 $GLOBALS['cfg']['SQP']['fmtColor'] = array(
91 'comment' => '#808000',
92 'comment_mysql' => '',
93 'comment_ansi' => '',
94 'comment_c' => '',
95 'digit' => '',
96 'digit_hex' => 'teal',
97 'digit_integer' => 'teal',
98 'digit_float' => 'aqua',
99 'punct' => 'fuchsia',
100 'alpha' => '',
101 'alpha_columnType' => '#FF9900',
102 'alpha_columnAttrib' => '#0000FF',
103 'alpha_reservedWord' => '#990099',
104 'alpha_functionName' => '#FF0000',
105 'alpha_identifier' => 'black',
106 'alpha_charset' => '#6495ed',
107 'alpha_variable' => '#800000',
108 'quote' => '#008000',
109 'quote_double' => '',
110 'quote_single' => '',
111 'quote_backtick' => ''
115 * Chart colors
118 $GLOBALS['cfg']['chartColor'] = array(
119 'gradientIntensity' => 0,
120 // The style of the chart title.
121 'titleColor' => '#000000',
122 'titleBgColor' => $GLOBALS['cfg']['ThBackground'],
123 // Chart border (0 for no border)
124 'border' => '#CCCCCC',
125 // Chart background color.
126 'bgColor' => $GLOBALS['cfg']['BgTwo'],
127 // when graph area gradient is used, this is the color of the graph
128 // area border
129 'graphAreaColor' => '#D5D9DD',
130 // the background color of the inner graph area
131 'graphAreaGradientColor' => $GLOBALS['cfg']['BgOne'],
132 // the color of the grid lines in the graph area
133 'gridColor' => '#E6E6E6',
134 // the color of the scale and the labels
135 'scaleColor' => '#D5D9DD',