Skip to content

Commit c2ee5a6

Browse files
mbonacimarijnh
authored andcommitted
Make parentheses visible while under matchingbracket rule
Code: Brackets now become black when they are highlighted as "matching". JSON: key names are now in "white" (json was a bit saturated with orange - keys and string values). Cleanup: removed some unnecessary rules. Default face color normalized to #ffffec (was #ffffe9).
1 parent 8fac50a commit c2ee5a6

File tree

1 file changed

+10
-14
lines changed

1 file changed

+10
-14
lines changed

theme/mbo.css

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
/* Based on mbonaci's Brackets mbo theme */
1+
/****************************************************************/
2+
/* Based on mbonaci's Brackets mbo theme */
3+
/* https://github.com/mbonaci/global/blob/master/Mbo.tmTheme */
4+
/* Create your own: http://tmtheme-editor.herokuapp.com */
5+
/****************************************************************/
26

3-
.cm-s-mbo.CodeMirror {background: #2c2c2c; color: #ffffe9;}
7+
.cm-s-mbo.CodeMirror {background: #2c2c2c; color: #ffffec;}
48
.cm-s-mbo div.CodeMirror-selected {background: #716C62 !important;}
59
.cm-s-mbo .CodeMirror-gutters {background: #4e4e4e; border-right: 0px;}
610
.cm-s-mbo .CodeMirror-guttermarker { color: white; }
@@ -15,6 +19,7 @@
1519
.cm-s-mbo span.cm-property, .cm-s-mbo span.cm-attribute {color: #9ddfe9;}
1620
.cm-s-mbo span.cm-keyword {color: #ffb928;}
1721
.cm-s-mbo span.cm-string {color: #ffcf6c;}
22+
.cm-s-mbo span.cm-string.cm-property {color: #ffffec;}
1823

1924
.cm-s-mbo span.cm-variable {color: #ffffec;}
2025
.cm-s-mbo span.cm-variable-2 {color: #00a8c6;}
@@ -23,17 +28,8 @@
2328
.cm-s-mbo span.cm-tag {color: #9ddfe9;}
2429
.cm-s-mbo span.cm-link {color: #f54b07;}
2530
.cm-s-mbo span.cm-error {border-bottom: #636363; color: #ffffec;}
31+
.cm-s-mbo span.cm-qualifier {color: #ffffec;}
2632

2733
.cm-s-mbo .CodeMirror-activeline-background {background: #494b41 !important;}
28-
.cm-s-mbo .CodeMirror-matchingbracket {
29-
text-decoration: underline;
30-
color: #f5e107 !important;
31-
}
32-
33-
.cm-s-mbo .CodeMirror-matchingtag { background: rgba(255, 255, 255, .37); }
34-
35-
.cm-s-mbo span.cm-searching {
36-
background-color: none;
37-
background: none;
38-
box-shadow: 0 0 0 1px #ffffec;
39-
}
34+
.cm-s-mbo .CodeMirror-matchingbracket {color: #222 !important;}
35+
.cm-s-mbo .CodeMirror-matchingtag {background: rgba(255, 255, 255, .37);}

0 commit comments

Comments
 (0)