layout.inc.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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
  6. *
  7. * @package PhpMyAdmin-theme
  8. * @subpackage PMAHomme
  9. */
  10. /**
  11. * navi frame
  12. */
  13. // navi frame width
  14. $GLOBALS['cfg']['NaviWidth'] = 240;
  15. // foreground (text) color for the navi frame
  16. $GLOBALS['cfg']['NaviColor'] = '#000';
  17. // background for the navi frame
  18. $GLOBALS['cfg']['NaviBackground'] = '#f3f3f3';
  19. // foreground (text) color of the pointer in navi frame
  20. $GLOBALS['cfg']['NaviPointerColor'] = '#000';
  21. // background of the pointer in navi frame
  22. $GLOBALS['cfg']['NaviPointerBackground'] = '#ddd';
  23. /**
  24. * main frame
  25. */
  26. // foreground (text) color for the main frame
  27. $GLOBALS['cfg']['MainColor'] = '#000';
  28. // background for the main frame
  29. $GLOBALS['cfg']['MainBackground'] = '#F5F5F5';
  30. // foreground (text) color of the pointer in browse mode
  31. $GLOBALS['cfg']['BrowsePointerColor'] = '#000';
  32. // background of the pointer in browse mode
  33. $GLOBALS['cfg']['BrowsePointerBackground'] = '#cfc';
  34. // foreground (text) color of the marker (visually marks row by clicking on it)
  35. // in browse mode
  36. $GLOBALS['cfg']['BrowseMarkerColor'] = '#000';
  37. // background of the marker (visually marks row by clicking on it) in browse mode
  38. $GLOBALS['cfg']['BrowseMarkerBackground'] = '#fc9';
  39. /**
  40. * fonts
  41. */
  42. /**
  43. * the font family as a valid css font family value,
  44. * if not set the browser default will be used
  45. * (depending on browser, DTD and system settings)
  46. */
  47. $GLOBALS['cfg']['FontFamily'] = 'sans-serif';
  48. /**
  49. * fixed width font family, used in textarea
  50. */
  51. $GLOBALS['cfg']['FontFamilyFixed'] = 'monospace';
  52. /**
  53. * tables
  54. */
  55. // border
  56. $GLOBALS['cfg']['Border'] = 0;
  57. // table header and footer color
  58. $GLOBALS['cfg']['ThBackground'] = '#D3DCE3';
  59. // table header and footer background
  60. $GLOBALS['cfg']['ThColor'] = '#000';
  61. // table data row background
  62. $GLOBALS['cfg']['BgOne'] = '#E5E5E5';
  63. // table data row background, alternate
  64. $GLOBALS['cfg']['BgTwo'] = '#D5D5D5';
  65. /**
  66. * query window
  67. */
  68. // Width of Query window
  69. $GLOBALS['cfg']['QueryWindowWidth'] = 600;
  70. // Height of Query window
  71. $GLOBALS['cfg']['QueryWindowHeight'] = 400;
  72. /**
  73. * SQL Parser Settings
  74. * Syntax colouring data
  75. */
  76. $GLOBALS['cfg']['SQP']['fmtColor'] = array(
  77. 'comment' => '#808000',
  78. 'comment_mysql' => '',
  79. 'comment_ansi' => '',
  80. 'comment_c' => '',
  81. 'digit' => '',
  82. 'digit_hex' => 'teal',
  83. 'digit_integer' => 'teal',
  84. 'digit_float' => 'aqua',
  85. 'punct' => 'fuchsia',
  86. 'alpha' => '',
  87. 'alpha_columnType' => '#f90',
  88. 'alpha_columnAttrib' => '#00f',
  89. 'alpha_reservedWord' => '#909',
  90. 'alpha_functionName' => '#f00',
  91. 'alpha_identifier' => 'black',
  92. 'alpha_charset' => '#6495ed',
  93. 'alpha_variable' => '#800000',
  94. 'quote' => '#008000',
  95. 'quote_double' => '',
  96. 'quote_single' => '',
  97. 'quote_backtick' => ''
  98. );
  99. /**
  100. * Chart colors
  101. */
  102. $GLOBALS['cfg']['chartColor'] = array(
  103. 'gradientIntensity' => 50,
  104. // The style of the chart title.
  105. 'titleColor' => '#000',
  106. 'titleBgColor' => '#E5E5E5',
  107. // Chart border (0 for no border)
  108. 'border' => '#ccc',
  109. // Chart background color.
  110. 'bgColor' => '#FBFBFB',
  111. // when graph area gradient is used, this is the color of the graph
  112. // area border
  113. 'graphAreaColor' => '#D5D9DD',
  114. // the background color of the graph area
  115. 'graphAreaGradientColor' => $GLOBALS['cfg']['BgTwo'],
  116. // the color of the grid lines in the graph area
  117. 'gridColor' => '#E6E6E6',
  118. // the color of the scale and the labels
  119. 'scaleColor' => '#D5D9DD',
  120. );
  121. ?>