--- admin_menu.inc	Sat Apr 04 17:23:18 2009
+++ admin_menu.inc	Fri May 08 22:32:22 2009
@@ -407,6 +407,12 @@
     '#default_value' => variable_get('admin_menu_tweak_tabs', 0),
     '#description' => t('If enabled, the tabs on the current page are moved into the administration menu. This feature is only available in themes that use the CSS classes <code>tabs primary</code> and <code>tabs secondary</code> for tabs.'),
   );
+  $form['tweaks']['admin_menu_user1_red'] = array(
+    '#type' => 'checkbox',
+    '#title' => t('Red background for user #1'),
+    '#default_value' => variable_get('admin_menu_user1_red', 1),
+    '#description' => t('If enabled, the background of the administration menu will become red when logged in as user #1.'),
+  );
   return system_settings_form($form);
 }
 
--- admin_menu.module	Thu May 07 02:34:40 2009
+++ admin_menu.module	Fri May 08 22:33:07 2009
@@ -101,7 +101,7 @@
 
   $path = drupal_get_path('module', 'admin_menu');
   drupal_add_css($path . '/admin_menu.css', 'module', 'all', FALSE);
-  if ($user->uid == 1) {
+  if ($user->uid == 1 && variable_get('admin_menu_user1_red', 1)) {
     drupal_add_css($path . '/admin_menu.color.css', 'module', 'all', FALSE);
   }
   // Performance: Defer execution.
