Upgraded phpmyadmin to 4.0.4 (All Languages) - No modifications yet
[openemr.git] / phpmyadmin / themes / pmahomme / layout.inc.php
blob7454cade495a17883aa33eaffef4bb8e018e6475
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 PMAHomme
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'] = '#000';
20 // background for the navi frame
21 $GLOBALS['cfg']['NaviBackground'] = '#f3f3f3';
23 // foreground (text) color of the pointer in navi frame
24 $GLOBALS['cfg']['NaviPointerColor'] = '#000';
26 // background of the pointer in navi frame
27 $GLOBALS['cfg']['NaviPointerBackground'] = '#ddd';
29 /**
30 * main frame
32 // foreground (text) color for the main frame
33 $GLOBALS['cfg']['MainColor'] = '#000';
35 // background for the main frame
36 $GLOBALS['cfg']['MainBackground'] = '#F5F5F5';
38 // foreground (text) color of the pointer in browse mode
39 $GLOBALS['cfg']['BrowsePointerColor'] = '#000';
41 // background of the pointer in browse mode
42 $GLOBALS['cfg']['BrowsePointerBackground'] = '#cfc';
44 // foreground (text) color of the marker (visually marks row by clicking on it)
45 // in browse mode
46 $GLOBALS['cfg']['BrowseMarkerColor'] = '#000';
48 // background of the marker (visually marks row by clicking on it) in browse mode
49 $GLOBALS['cfg']['BrowseMarkerBackground'] = '#fc9';
51 /**
52 * fonts
54 /**
55 * the font family as a valid css font family value,
56 * if not set the browser default will be used
57 * (depending on browser, DTD and system settings)
59 $GLOBALS['cfg']['FontFamily'] = 'sans-serif';
60 /**
61 * fixed width font family, used in textarea
63 $GLOBALS['cfg']['FontFamilyFixed'] = 'monospace';
65 /**
66 * tables
68 // border
69 $GLOBALS['cfg']['Border'] = 0;
70 // table header and footer color
71 $GLOBALS['cfg']['ThBackground'] = '#D3DCE3';
72 // table header and footer background
73 $GLOBALS['cfg']['ThColor'] = '#000';
74 // table data row background
75 $GLOBALS['cfg']['BgOne'] = '#E5E5E5';
76 // table data row background, alternate
77 $GLOBALS['cfg']['BgTwo'] = '#D5D5D5';
79 /**
80 * query window
82 // Width of Query window
83 $GLOBALS['cfg']['QueryWindowWidth'] = 600;
84 // Height of Query window
85 $GLOBALS['cfg']['QueryWindowHeight'] = 400;
87 /**
88 * SQL Parser Settings
89 * Syntax colouring data
91 $GLOBALS['cfg']['SQP']['fmtColor'] = array(
92 'comment' => '#808000',
93 'comment_mysql' => '',
94 'comment_ansi' => '',
95 'comment_c' => '',
96 'digit' => '',
97 'digit_hex' => 'teal',
98 'digit_integer' => 'teal',
99 'digit_float' => 'aqua',
100 'punct' => 'fuchsia',
101 'alpha' => '',
102 'alpha_columnType' => '#f90',
103 'alpha_columnAttrib' => '#00f',
104 'alpha_reservedWord' => '#909',
105 'alpha_functionName' => '#f00',
106 'alpha_identifier' => 'black',
107 'alpha_charset' => '#6495ed',
108 'alpha_variable' => '#800000',
109 'quote' => '#008000',
110 'quote_double' => '',
111 'quote_single' => '',
112 'quote_backtick' => ''
116 * Chart colors
119 $GLOBALS['cfg']['chartColor'] = array(
120 'gradientIntensity' => 50,
121 // The style of the chart title.
122 'titleColor' => '#000',
123 'titleBgColor' => '#E5E5E5',
124 // Chart border (0 for no border)
125 'border' => '#ccc',
126 // Chart background color.
127 'bgColor' => '#FBFBFB',
128 // when graph area gradient is used, this is the color of the graph
129 // area border
130 'graphAreaColor' => '#D5D9DD',
131 // the background color of the graph area
132 'graphAreaGradientColor' => $GLOBALS['cfg']['BgTwo'],
133 // the color of the grid lines in the graph area
134 'gridColor' => '#E6E6E6',
135 // the color of the scale and the labels
136 'scaleColor' => '#D5D9DD',