Fix end of lines
[phpmyadmin-themes.git] / paradice / layout.inc.php
blob465c074f49aa52c2cb8996f7ae6ab93b7eaa3c16
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: layout.inc.php 12 2008-05-28 20:51:41Z andyscherzinger $
8 * @package phpMyAdmin-theme
9 * @subpackage Paradice
12 /**
13 * navi frame
15 // navi frame width
16 $GLOBALS['cfg']['NaviWidth'] = 164;
18 // foreground (text) color for the navi frame
19 $GLOBALS['cfg']['NaviColor'] = '#FFFFFF';
21 // background for the navi frame
22 $GLOBALS['cfg']['NaviBackground'] = '#3674CF';
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'] = '#5796EF';
28 // text color of the selected database name (when showing the table list)
29 $GLOBALS['cfg']['NaviDatabaseNameColor'] = '#FFFFFF';
31 /**
32 * main frame
34 // foreground (text) color for the main frame
35 $GLOBALS['cfg']['MainColor'] = '#142F56';
37 // background for the main frame
38 $GLOBALS['cfg']['MainBackground'] = '#FFFFFF';
39 //$GLOBALS['cfg']['MainBackground'] = '#F5F5F5 url(' . $_SESSION['PMA_Theme']->getImgPath() . 'vertical_line.png) repeat-y';
41 // foreground (text) color of the pointer in browse mode
42 $GLOBALS['cfg']['BrowsePointerColor'] = '#FFFFFF';
44 // background of the pointer in browse mode
45 $GLOBALS['cfg']['BrowsePointerBackground'] = '#5287D6';
47 // foreground (text) color of the marker (visually marks row by clicking on it) in browse mode
48 $GLOBALS['cfg']['BrowseMarkerColor'] = '#000000';
50 // background of the marker (visually marks row by clicking on it) in browse mode
51 $GLOBALS['cfg']['BrowseMarkerBackground'] = '#FBAE36';
53 /**
54 * fonts
56 /**
57 * the font family as a valid css font family value,
58 * if not set the browser default will be used
59 * (depending on browser, DTD and system settings)
61 $GLOBALS['cfg']['FontFamily'] = 'Verdana, Arial, Helvetica, sans-serif';
62 /**
63 * fixed width font family, used in textarea
65 $GLOBALS['cfg']['FontFamilyFixed'] = '"Courier New", Courier, monospace';
67 /**
68 * tables
70 // border
71 $GLOBALS['cfg']['Border'] = 0;
72 // table header and footer color
73 $GLOBALS['cfg']['ThBackground'] = '#79A2DF';
74 // table header and footer background
75 $GLOBALS['cfg']['ThColor'] = '#000000';
76 // table data row background
77 $GLOBALS['cfg']['BgOne'] = '#EEEEEE';
78 // table data row background, alternate
79 $GLOBALS['cfg']['BgTwo'] = '#E5E5E5';
81 /**
82 * query window
84 // Width of Query window
85 $GLOBALS['cfg']['QueryWindowWidth'] = 600;
86 // Height of Query window
87 $GLOBALS['cfg']['QueryWindowHeight'] = 400;
89 /**
90 * SQL Parser Settings
91 * Syntax colouring data
93 $GLOBALS['cfg']['SQP']['fmtColor'] = array(
94 'comment' => '#808000',
95 'comment_mysql' => '',
96 'comment_ansi' => '',
97 'comment_c' => '',
98 'digit' => '',
99 'digit_hex' => 'teal',
100 'digit_integer' => 'teal',
101 'digit_float' => 'aqua',
102 'punct' => 'fuchsia',
103 'alpha' => '',
104 'alpha_columnType' => '#FF9900',
105 'alpha_columnAttrib' => '#0000FF',
106 'alpha_reservedWord' => '#990099',
107 'alpha_functionName' => '#FF0000',
108 'alpha_identifier' => 'black',
109 'alpha_charset' => '#6495ed',
110 'alpha_variable' => '#800000',
111 'quote' => '#008000',
112 'quote_double' => '',
113 'quote_single' => '',
114 'quote_backtick' => ''