Skip to content

Commit 8dd4e10

Browse files
authored
Merge pull request #17 from jimmyorourke/master
Improve c++ support
2 parents 6b7f9a8 + 7697d52 commit 8dd4e10

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

themes/sublime-monokai-color-theme.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -552,6 +552,45 @@
552552
"foreground": "#66D9EF"
553553
}
554554
},
555+
{
556+
"name": "Namespace name",
557+
"scope": "entity.name.namespace.cpp",
558+
"settings": {
559+
"foreground": "#A6E22E",
560+
}
561+
},
562+
{
563+
"name": "Namespace keyword",
564+
"scope": "storage.type.namespace.definition.cpp",
565+
"settings": {
566+
"foreground": "#F92672",
567+
"fontStyle": ""
568+
}
569+
},
570+
{
571+
"name": "Access modifier keyword",
572+
"scope": "storage.type.modifier.access",
573+
"settings": {
574+
"foreground": "#F92672",
575+
"fontStyle": ""
576+
}
577+
},
578+
{
579+
"name": "Access modifier colon",
580+
"scope": "punctuation.separator.colon.access.control.cpp",
581+
"settings": {
582+
"foreground": "#F8F8F2",
583+
}
584+
},
585+
{
586+
// Not perfect, but the best we can do without updating C++ language support
587+
"name": "Inherited class",
588+
"scope": "meta.qualified_type.cpp, entity.name.type.cpp",
589+
"settings": {
590+
"fontStyle": "italic",
591+
"foreground": "#A6E22E"
592+
}
593+
},
555594
// Second class C support
556595
{
557596
"name": "Sublime C White highlights",

0 commit comments

Comments
 (0)