Last active
August 29, 2015 14:13
-
-
Save lynzz/48b7c47ab3ce1aec29b2 to your computer and use it in GitHub Desktop.
ace theme github-light
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* CSS style content from github's default pygments highlighter template. | |
Cursor and selection styles from textmate.css. */ | |
.ace_editor { | |
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace; | |
line-height: 18px | |
} | |
.ace-github { | |
background: #fff; | |
color: #000; | |
} | |
.ace-github .ace_gutter { | |
background: #fff; | |
border-right: 1px solid #eee; | |
color: #999; | |
} | |
.ace-github .ace_fold { | |
background-color: #a71d5d; | |
border-color: #333333 | |
} | |
.ace-github .ace_constant { | |
color: #0086b3 | |
} | |
.ace-github .ace_keyword { | |
color: #a71d5d; | |
} | |
.ace-github .ace_tag { | |
color: #63a35c; | |
} | |
.ace-github .ace_attribute-name, | |
.ace-github .ace_attribute-equals { | |
color: #795da3; | |
} | |
.ace-github .ace_string { | |
color: #df5000; | |
} | |
.ace-github .ace_support { | |
color: #0086b3 | |
} | |
.ace-github .ace_support.ace_constant { | |
color: #0086b3 | |
} | |
.ace-github .ace_support.ace_type { | |
color: #a71d5d | |
} | |
.ace-github .ace_storage { | |
color: #a71d5d | |
} | |
.ace-github .ace_storage.ace_type { | |
color: #a71d5d | |
} | |
.ace-github .ace_variable { | |
color: #1d3e81; | |
} | |
.ace-github .ace_variable.ace_class { | |
color: teal; | |
} | |
.ace-github .ace_constant.ace_numeric { | |
color: #099; | |
} | |
.ace-github .ace_constant.ace_buildin { | |
color: #0086B3; | |
} | |
.ace-github .ace_support.ace_function { | |
color: #0086B3; | |
} | |
.ace-github .ace_comment { | |
color: #969896; | |
} | |
.ace-github .ace_variable.ace_language { | |
color: #0086B3; | |
} | |
.ace-github .ace_paren { | |
font-weight: bold; | |
} | |
.ace-github .ace_boolean { | |
font-weight: bold; | |
} | |
.ace-github .ace_string.ace_regexp { | |
color: #df5000; | |
font-weight: normal; | |
} | |
.ace-github .ace_variable.ace_instance { | |
color: teal; | |
} | |
.ace-github .ace_constant.ace_language { | |
font-weight: bold; | |
} | |
.ace-github .ace_cursor { | |
color: black; | |
} | |
.ace-github .ace_marker-layer .ace_active-line { | |
background: #f5f5f5; | |
} | |
.ace-github .ace_marker-layer .ace_selection { | |
background: #c8c8fa; | |
} | |
.ace-github.ace_multiselect .ace_selection.ace_start { | |
box-shadow: 0 0 3px 0px #fff; | |
border-radius: 2px; | |
} | |
/* bold keywords cause cursor issues for some fonts */ | |
/* this disables bold style for editor and keeps for static highlighter */ | |
.ace-github.ace_nobold .ace_line > span { | |
font-weight: normal !important; | |
} | |
.ace-github .ace_marker-layer .ace_step { | |
background: #fcff00; | |
} | |
.ace-github .ace_marker-layer .ace_stack { | |
background-color: #a4e565 | |
} | |
.ace-github .ace_marker-layer .ace_bracket { | |
margin: -1px 0 0 -1px; | |
border: 1px solid #c0c0c0; | |
} | |
.ace-github .ace_gutter-active-line { | |
background-color : #f5f5f5; | |
} | |
.ace-github .ace_marker-layer .ace_selected-word { | |
border: 1px solid #fafaff; | |
} | |
.ace-github .ace_print-margin { | |
width: 1px; | |
background: #e8e8e8; | |
} | |
.ace-github .ace_indent-guide { | |
box-shadow: inset -1px 0 0 rgba(0,0,0,0.1); | |
} | |
.ace_invalid.ace_illegal { | |
text-decoration: underline; | |
font-style: italic; | |
color: #f8f8f8; | |
background-color: #b52a1d | |
} | |
.ace_invalid.ace_deprecated { | |
text-decoration: underline; | |
font-style: italic; | |
color: #b52a1d | |
} | |
.ace_entity.ace_name { | |
color: #795da3 | |
} | |
.ace_entity.ace_name.ace_tag { | |
color: #63a35c | |
} | |
.ace_markup.ace_heading { | |
color: #1d3e81 | |
} | |
.ace_markup.ace_list { | |
color: #693a17 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment