/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is Ajax.org Code Editor (ACE). * * The Initial Developer of the Original Code is * Ajax.org B.V. * Portions created by the Initial Developer are Copyright (C) 2010 * the Initial Developer. All Rights Reserved. * * Contributor(s): * Fabian Jakobs <fabian AT ajax DOT org> * * Alternatively, the contents of this file may be used under the terms of * either the GNU General Public License Version 2 or later (the "GPL"), or * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the MPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */
define(‘ace/theme/chrome’, [‘require’, ‘exports’, ‘module’ , ‘ace/lib/dom’], function(require, exports, module) {
exports.cssClass = “ace-chrome”; exports.cssText = “.ace-chrome .ace_editor {\
border: 2px solid rgb(159, 159, 159);\
}\ \ .ace-chrome .ace_editor.ace_focus {\
border: 2px solid #327fbd;\
}\ \ .ace-chrome .ace_gutter {\
background: #e8e8e8;\ color: #333;\ overflow : hidden;\
}\ \ .ace-chrome .ace_gutter-layer {\
width: 100%;\ text-align: right;\
}\ \ .ace-chrome .ace_print_margin {\
width: 1px;\ background: #e8e8e8;\
}\ \ .ace-chrome .ace_text-layer {\
cursor: text;\
}\ \ .ace-chrome .ace_cursor {\
border-left: 2px solid black;\
}\ \ .ace-chrome .ace_cursor.ace_overwrite {\
border-left: 0px;\ border-bottom: 1px solid black;\
}\ \ .ace-chrome .ace_line .ace_invisible {\
color: rgb(191, 191, 191);\
}\ \ .ace-chrome .ace_line .ace_constant.ace_buildin {\
color: rgb(88, 72, 246);\
}\ \ .ace-chrome .ace_line .ace_constant.ace_language {\
color: rgb(88, 92, 246);\
}\ \ .ace-chrome .ace_line .ace_constant.ace_library {\
color: rgb(6, 150, 14);\
}\ \ .ace-chrome .ace_line .ace_invalid {\
background-color: rgb(153, 0, 0);\ color: white;\
}\ \ .ace-chrome .ace_line .ace_fold {\ }\ \ .ace-chrome .ace_line .ace_support.ace_function {\
color: rgb(60, 76, 114);\
}\ \ .ace-chrome .ace_line .ace_support.ace_constant {\
color: rgb(6, 150, 14);\
}\ \ .ace-chrome .ace_line .ace_support.ace_type,\ .ace-chrome .ace_line .ace_support.ace_class {\
color: rgb(109, 121, 222);\
}\ \ .ace-chrome .ace_variable.ace_parameter {\
font-style:italic;\
color:#FD971F;\ }\ .ace-chrome .ace_line .ace_keyword.ace_operator {\
color: rgb(104, 118, 135);\
}\ \ .ace-chrome .ace_line .ace_comment {\
color: #236e24;\
}\ \ .ace-chrome .ace_line .ace_comment.ace_doc {\
color: #236e24;\
}\ \ .ace-chrome .ace_line .ace_comment.ace_doc.ace_tag {\
color: #236e24;\
}\ \ .ace-chrome .ace_line .ace_constant.ace_numeric {\
color: rgb(0, 0, 205);\
}\ \ .ace-chrome .ace_line .ace_variable {\
color: rgb(49, 132, 149);\
}\ \ .ace-chrome .ace_line .ace_xml_pe {\
color: rgb(104, 104, 91);\
}\ \ .ace-chrome .ace_entity.ace_name.ace_function {\
color: #0000A2;\
}\ \ .ace-chrome .ace_markup.ace_markupine {\
text-decoration:underline;\
}\ \ .ace-chrome .ace_markup.ace_heading {\
color: rgb(12, 7, 255);\
}\ \ .ace-chrome .ace_markup.ace_list {\
color:rgb(185, 6, 144);\
}\ \ .ace-chrome .ace_marker-layer .ace_selection {\
background: rgb(181, 213, 255);\
}\ \ .ace-chrome .ace_marker-layer .ace_step {\
background: rgb(252, 255, 0);\
}\ \ .ace-chrome .ace_marker-layer .ace_stack {\
background: rgb(164, 229, 101);\
}\ \ .ace-chrome .ace_marker-layer .ace_bracket {\
margin: -1px 0 0 -1px;\ border: 1px solid rgb(192, 192, 192);\
}\ \ .ace-chrome .ace_marker-layer .ace_active_line {\
background: rgba(0, 0, 0, 0.07);\
}\ \ .ace-chrome .ace_marker-layer .ace_selected_word {\
background: rgb(250, 250, 255);\ border: 1px solid rgb(200, 200, 250);\
}\ \ .ace-chrome .ace_storage,\ .ace-chrome .ace_line .ace_keyword,\ .ace-chrome .ace_meta.ace_tag {\
color: rgb(147, 15, 128);\
}\ \ .ace-chrome .ace_string.ace_regex {\
color: rgb(255, 0, 0)\
}\ \ .ace-chrome .ace_line .ace_string,\ .ace-chrome .ace_entity.ace_other.ace_attribute-name{\
color: #994409;\
}“;
var dom = require(“../lib/dom”); dom.importCssString(exports.cssText, exports.cssClass);
});