Merge pull request #825 from josh/github-theme-tweaks

Tweak github theme
This commit is contained in:
Harutyun Amirjanyan 2012-06-30 00:05:08 -07:00
commit e322a4ee3b
2 changed files with 19 additions and 16 deletions

View file

@ -13,8 +13,13 @@
margin-bottom: 15px;
}
.ace-github .ace_keyword {
font-weight: bold;
.ace-github .ace_gutter {
background: #e8e8e8;
color: #AAA;
}
.ace-github .ace_scroller {
background: #fff;
}
.ace-github .ace_string {
@ -29,6 +34,14 @@
color: #099;
}
.ace-github .ace_constant.ace_buildin {
color: #0086B3;
}
.ace-github .ace_support.ace_function {
color: #0086B3;
}
.ace-github .ace_comment {
color: #998;
font-style: italic;
@ -38,15 +51,6 @@
color: #0086B3;
}
.ace-github .ace_paren.ace_lparen,
.ace-github .ace_paren.ace_rparen {
font-weight: bold;
}
.ace-github .ace_constant.ace_language.ace_boolean {
font-weight: bold;
}
.ace-github .ace_string.ace_regexp {
color: #009926;
font-weight: normal;
@ -56,10 +60,6 @@
color: teal;
}
.ace-github .ace_constant.ace_language {
font-weight: bold;
}
.ace-github .ace_text-layer {
}
@ -72,6 +72,9 @@
border-bottom: 1px solid black;
}
.ace-github .ace_marker-layer .ace_active_line {
background: rgb(255, 255, 204);
}
.ace-github .ace_marker-layer .ace_selection {
background: rgb(181, 213, 255);
}

View file

@ -37,7 +37,7 @@
define(function(require, exports, module) {
exports.isDark = true;
exports.isDark = false;
exports.cssClass = "ace-github";
exports.cssText = require('ace/requirejs/text!./github.css');