Remove custom color references in themes compatible with 3.4
[phpmyadmin-themes.git] / silk / layout.inc.php
blob3f126b37b5b828c17498bae1dc22b0e9422bf07b
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 Silk
12 /**
13 * navi frame
15 // navi frame width
16 $GLOBALS['cfg']['NaviWidth'] = 200;
18 // foreground (text) color for the navi frame
19 $GLOBALS['cfg']['NaviColor'] = '#AAAAAA';
21 // background for the navi frame
22 $GLOBALS['cfg']['NaviBackground'] = '#FFFFFF';
24 // foreground (text) color of the pointer in navi frame
25 $GLOBALS['cfg']['NaviPointerColor'] = '#000000';
26 // background of the pointer in navi frame
27 $GLOBALS['cfg']['NaviPointerBackground'] = '#F9F9F9';
29 /**
30 * main frame
32 // foreground (text) color for the main frame
33 $GLOBALS['cfg']['MainColor'] = '#AAAAAA';
35 // background for the main frame
36 $GLOBALS['cfg']['MainBackground'] = '#FFFFFF';
37 //$GLOBALS['cfg']['MainBackground'] = '#FFFFFF url(' . $_SESSION['PMA_Theme']->getImgPath() . 'vertical_line.png) repeat-y';
39 // foreground (text) color of the pointer in browse mode
40 $GLOBALS['cfg']['BrowsePointerColor'] = '#000000';
42 // background of the pointer in browse mode
43 $GLOBALS['cfg']['BrowsePointerBackground'] = '#CCFFCC';
45 // foreground (text) color of the marker (visually marks row by clicking on it) in browse mode
46 $GLOBALS['cfg']['BrowseMarkerColor'] = '#000000';
48 // background of the marker (visually marks row by clicking on it) in browse mode
49 $GLOBALS['cfg']['BrowseMarkerBackground'] = '#FFCC99';
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'] = '#F9F9F9';
72 // table header and footer background
73 $GLOBALS['cfg']['ThColor'] = '#000000';
74 // table data row background
75 $GLOBALS['cfg']['BgOne'] = '#F9F9F9';
76 // table data row background, alternate
77 $GLOBALS['cfg']['BgTwo'] = '#F9F9F9';
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' => '#FF9900',
103 'alpha_columnAttrib' => '#0000FF',
104 'alpha_reservedWord' => '#990099',
105 'alpha_functionName' => '#FF0000',
106 'alpha_identifier' => 'black',
107 'alpha_charset' => '#6495ed',
108 'alpha_variable' => '#800000',
109 'quote' => '#008000',
110 'quote_double' => '',
111 'quote_single' => '',
112 'quote_backtick' => ''