Lowercase hex colors
14
README.md
@ -54,13 +54,13 @@ New Moon is available for:
|
||||
| Foreground | Light |  `#b3b9c5` |
|
||||
| Function | Lightest |  `#ffffff` |
|
||||
| Variable | Red |  `#f2777a` |
|
||||
| Number | Orange |  `#fca369` |
|
||||
| Attribute | Yellow |  `#ffd479` |
|
||||
| Keyword | Light Yellow |  `#ffeea6` |
|
||||
| String | Green |  `#92d192` |
|
||||
| Class/Tag | Blue |  `#6AB0F3` |
|
||||
| Constant/Pseudo | Aqua |  `#76d4d6` |
|
||||
| Support | Purple |  `#e1a6f2` |
|
||||
| Number | Orange |  `#fca369` |
|
||||
| Attribute | Yellow |  `#ffd479` |
|
||||
| Keyword | Light Yellow |  `#ffeea6` |
|
||||
| String | Green |  `#92d192` |
|
||||
| Class/Tag | Blue |  `#6ab0f3` |
|
||||
| Constant/Pseudo | Aqua |  `#76d4d6` |
|
||||
| Support | Purple |  `#e1a6f2` |
|
||||
| Operator | Beige |  `#ac8d58` |
|
||||
|
||||
## Screenshots
|
||||
|
@ -9,24 +9,24 @@
|
||||
@light: #f7f7f7;
|
||||
@gray: #b3b9c5;
|
||||
@dark: rgba(0, 0, 0, 0.7);
|
||||
@green: #92D192;
|
||||
@darkblue: #6AB0F3;
|
||||
@aqua: #76D4D6;
|
||||
@orangered: #FCA369;
|
||||
@green: #92d192;
|
||||
@darkblue: #6ab0f3;
|
||||
@aqua: #76d4d6;
|
||||
@orangered: #fca369;
|
||||
@yellow: #ffeea6;
|
||||
@beige: #ac8d58;
|
||||
@purple: #E1A6F2;
|
||||
@orange: #FFD479;
|
||||
@purple: #e1a6f2;
|
||||
@orange: #ffd479;
|
||||
@red: #f2777a;
|
||||
|
||||
|
||||
/* Editor styling */
|
||||
|
||||
@background: #2D2D2D; // Code background
|
||||
@background: #2d2d2d; // Code background
|
||||
@foreground: #b3b9c5; // Code foreground
|
||||
@comment: #777c85; // Comment color
|
||||
@comment-active: #b3b9c5; // Comment active
|
||||
@cursor: #ffffff; // Cursor color
|
||||
@cursor: #ffffff; // Cursor color
|
||||
@activeline-background: rgba(0, 0, 0, 0.2); // Active line
|
||||
@activeline-foreground: rgba(0, 0, 0, 0.3);
|
||||
@matchingtag-background: rgba(0, 0, 0, 0.7); // Matching tag
|
||||
@ -60,7 +60,7 @@
|
||||
.cm-keyword { color: @keyword; } // Keyword
|
||||
.cm-atom { color: @definition; } // Definition
|
||||
.cm-number { color: @number; } // Number
|
||||
.cm-def { color: @definition; } // Definition
|
||||
.cm-def { color: @definition; } // Definition
|
||||
.cm-variable { color: @variable2; } // Variable
|
||||
span.cm-variable-2 { color: @red } // Variable 2
|
||||
span.cm-tag { color: @tag; } // Tag
|
||||
@ -68,14 +68,14 @@ span.cm-variable-3, span.cm-def { color: @variable; } // Variable
|
||||
.cm-operator { color: @operator; } // Math
|
||||
.cm-string { color: @string; } // String
|
||||
.cm-string-2 { color: @string; }
|
||||
.cm-meta { background: @meta; color: @meta-color; } // Meta
|
||||
.cm-meta { background: @meta; color: @meta-color; } // Meta
|
||||
.cm-builtin { color: @id; } // Built in and id
|
||||
.cm-tag { color: @tag; } // Tag
|
||||
.cm-attribute { color: @attribute; } // Attribute
|
||||
.cm-header { color: @attribute; } // Header
|
||||
.cm-hr { color: @comment; }
|
||||
.cm-link { color: @operator; }
|
||||
.cm-error { color: @error; background: RGBA(245, 119, 120, .1); }
|
||||
.cm-error { color: @error; background: rgba(245, 119, 120, .1); }
|
||||
.cm-qualifier { color: @qualifier; } // Qualifier
|
||||
.cm-property { color: @property; } // Property
|
||||
.cm-quote { color: @keyword } // Quote
|
||||
@ -89,26 +89,26 @@ span.cm-variable-3, span.cm-def { color: @variable; } // Variable
|
||||
/* Additional styles */
|
||||
|
||||
.CodeMirror-matchingbracket { // Matching bracket
|
||||
outline: 1px solid #888;
|
||||
color: white !important;
|
||||
background: @matchingbracket-background;
|
||||
outline: 1px solid #888;
|
||||
color: @white !important;
|
||||
background: @matchingbracket-background;
|
||||
}
|
||||
.CodeMirror-activeline .cm-comment { color: @comment-active !important; } // Active comment
|
||||
.CodeMirror-matchingtag { background: @matchingtag-background; } // Matching tag
|
||||
.CodeMirror .CodeMirror-cursor {
|
||||
border-left: 1px solid @cursor !important;
|
||||
border-left: 1px solid @cursor !important;
|
||||
}
|
||||
.CodeMirror .CodeMirror-overwrite .CodeMirror-cursor {
|
||||
border-left: none !important;
|
||||
border-bottom: 1px solid @cursor;
|
||||
width: 1.2ex;
|
||||
border-left: none !important;
|
||||
border-bottom: 1px solid @cursor;
|
||||
width: 1.2ex;
|
||||
}
|
||||
.CodeMirror-guttermarker { color: @white; }
|
||||
.CodeMirror-guttermarker-subtle { color: @gray; }
|
||||
.CodeMirror .CodeMirror-gutters { background-color: @background; border-right: 0; }
|
||||
.CodeMirror-gutter-elt { color: @comment !important; }
|
||||
.CodeMirror-activeline .CodeMirror-gutter-elt { color: #fff !important; }
|
||||
.CodeMirror-activeline .CodeMirror-gutter-elt { color: @white !important; }
|
||||
.CodeMirror .CodeMirror-linenumber { color: @activeline-foreground; }
|
||||
.CodeMirror-activeline-background, .CodeMirror-activeline .CodeMirror-gutter-elt { background: @activeline-background !important; }
|
||||
.cm-meta.CodeMirror-searching { background: #f5ee92 !important; color: #4e4225 !important; }
|
||||
.cm-meta.CodeMirror-searching.searching-current-match { background: #f5ee92 !important; color: #4e4225 !important; }
|
||||
.cm-meta.CodeMirror-searching.searching-current-match { background: #f5ee92 !important; color: #4e4225 !important; }
|
||||
|
@ -4,9 +4,9 @@
|
||||
<stop offset="1" stop-color="#ffeea6"/>
|
||||
</linearGradient>
|
||||
<circle cx="191.292" cy="191.977" r="158.977" fill="url(#a)"/>
|
||||
<path fill="#2D2D2D" d="M344.3 121.307a183.1 183.1 0 0 0-2.335-4.893 168.52 168.52 0 0 0-19.74-30.843C273.761 25.437 188.442 4.828 116.421 40.61c-10.355 5.145-19.937 11.195-28.714 18.04-61.779 48.137-83.302 134.642-47.1 207.503 41.357 83.219 142.335 117.171 225.554 75.813 28.834-14.323 51.75-35.81 67.661-61.228a167.782 167.782 0 0 0 13.856-27.415 168.624 168.624 0 0 0 9.813-35.736c5.044-31.682 1.094-65.11-13.191-96.28zm-82.585 211.714c-78.277 38.901-173.261 6.966-212.162-71.313C15.498 193.171 35.742 111.801 93.86 66.522c-28.247 45.101-33.083 103.415-7.657 154.567 38.893 78.278 133.875 110.204 212.153 71.313a158.733 158.733 0 0 0 27.005-16.976c-14.967 23.914-36.519 44.122-63.646 57.595z"/>
|
||||
<path fill="#94CE91" d="M317.467 173.986c0 5.707-5.373 10.333-12 10.333H128.443c-6.627 0-12-4.627-12-10.333v-10.333c0-5.707 5.373-10.334 12-10.334h177.023c6.627 0 12 4.627 12 10.334v10.333z"/>
|
||||
<path fill="#74AEDE" d="M331.586 119.066h-157.75c-6.631 0-12-4.64-12-10.34v-10.33c0-5.71 5.369-10.33 12-10.33h137.439c.42.5.83 1 1.24 1.51 1.32 1.63 2.609 3.3 3.869 4.99a167.686 167.686 0 0 1 15.202 24.5z"/>
|
||||
<path fill="#FFEEA6" d="M283.365 229.121v10.334c0 5.709-5.381 10.333-12 10.333H166.834c-6.619 0-12-4.624-12-10.333v-10.334c0-5.7 5.381-10.333 12-10.333h104.531c6.619 0 12 4.633 12 10.333z"/>
|
||||
<path fill="#F3777A" d="M345.586 218.786c-.16 1.26-.35 2.52-.551 3.779-.129.83-.27 1.671-.41 2.5-.01.07-.029.15-.039.221-.91 5.17-2.061 10.29-3.441 15.34-.84 3.08-1.77 6.13-2.779 9.16h-28.039c-6.641 0-12-4.62-12-10.33v-10.33c0-5.71 5.359-10.34 12-10.34h35.259z"/>
|
||||
<path fill="#2d2d2d" d="M344.3 121.307a183.1 183.1 0 0 0-2.335-4.893 168.52 168.52 0 0 0-19.74-30.843C273.761 25.437 188.442 4.828 116.421 40.61c-10.355 5.145-19.937 11.195-28.714 18.04-61.779 48.137-83.302 134.642-47.1 207.503 41.357 83.219 142.335 117.171 225.554 75.813 28.834-14.323 51.75-35.81 67.661-61.228a167.782 167.782 0 0 0 13.856-27.415 168.624 168.624 0 0 0 9.813-35.736c5.044-31.682 1.094-65.11-13.191-96.28zm-82.585 211.714c-78.277 38.901-173.261 6.966-212.162-71.313C15.498 193.171 35.742 111.801 93.86 66.522c-28.247 45.101-33.083 103.415-7.657 154.567 38.893 78.278 133.875 110.204 212.153 71.313a158.733 158.733 0 0 0 27.005-16.976c-14.967 23.914-36.519 44.122-63.646 57.595z"/>
|
||||
<path fill="#94ce91" d="M317.467 173.986c0 5.707-5.373 10.333-12 10.333H128.443c-6.627 0-12-4.627-12-10.333v-10.333c0-5.707 5.373-10.334 12-10.334h177.023c6.627 0 12 4.627 12 10.334v10.333z"/>
|
||||
<path fill="#74aede" d="M331.586 119.066h-157.75c-6.631 0-12-4.64-12-10.34v-10.33c0-5.71 5.369-10.33 12-10.33h137.439c.42.5.83 1 1.24 1.51 1.32 1.63 2.609 3.3 3.869 4.99a167.686 167.686 0 0 1 15.202 24.5z"/>
|
||||
<path fill="#ffeea6" d="M283.365 229.121v10.334c0 5.709-5.381 10.333-12 10.333H166.834c-6.619 0-12-4.624-12-10.333v-10.334c0-5.7 5.381-10.333 12-10.333h104.531c6.619 0 12 4.633 12 10.333z"/>
|
||||
<path fill="#f3777a" d="M345.586 218.786c-.16 1.26-.35 2.52-.551 3.779-.129.83-.27 1.671-.41 2.5-.01.07-.029.15-.039.221-.91 5.17-2.061 10.29-3.441 15.34-.84 3.08-1.77 6.13-2.779 9.16h-28.039c-6.641 0-12-4.62-12-10.33v-10.33c0-5.71 5.359-10.34 12-10.34h35.259z"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
@ -4,9 +4,9 @@
|
||||
<stop offset="1" stop-color="#ffeea6"/>
|
||||
</linearGradient>
|
||||
<circle cx="191.292" cy="191.977" r="158.977" fill="url(#a)"/>
|
||||
<path fill="#2D2D2D" d="M344.3 121.307a183.1 183.1 0 0 0-2.335-4.893 168.52 168.52 0 0 0-19.74-30.843C273.761 25.437 188.442 4.828 116.421 40.61c-10.355 5.145-19.937 11.195-28.714 18.04-61.779 48.137-83.302 134.642-47.1 207.503 41.357 83.219 142.335 117.171 225.554 75.813 28.834-14.323 51.75-35.81 67.661-61.228a167.782 167.782 0 0 0 13.856-27.415 168.624 168.624 0 0 0 9.813-35.736c5.044-31.682 1.094-65.11-13.191-96.28zm-82.585 211.714c-78.277 38.901-173.261 6.966-212.162-71.313C15.498 193.171 35.742 111.801 93.86 66.522c-28.247 45.101-33.083 103.415-7.657 154.567 38.893 78.278 133.875 110.204 212.153 71.313a158.733 158.733 0 0 0 27.005-16.976c-14.967 23.914-36.519 44.122-63.646 57.595z"/>
|
||||
<path fill="#94CE91" d="M317.467 173.986c0 5.707-5.373 10.333-12 10.333H128.443c-6.627 0-12-4.627-12-10.333v-10.333c0-5.707 5.373-10.334 12-10.334h177.023c6.627 0 12 4.627 12 10.334v10.333z"/>
|
||||
<path fill="#74AEDE" d="M331.586 119.066h-157.75c-6.631 0-12-4.64-12-10.34v-10.33c0-5.71 5.369-10.33 12-10.33h137.439c.42.5.83 1 1.24 1.51 1.32 1.63 2.609 3.3 3.869 4.99a167.686 167.686 0 0 1 15.202 24.5z"/>
|
||||
<path fill="#FFEEA6" d="M283.365 229.121v10.334c0 5.709-5.381 10.333-12 10.333H166.834c-6.619 0-12-4.624-12-10.333v-10.334c0-5.7 5.381-10.333 12-10.333h104.531c6.619 0 12 4.633 12 10.333z"/>
|
||||
<path fill="#F3777A" d="M345.586 218.786c-.16 1.26-.35 2.52-.551 3.779-.129.83-.27 1.671-.41 2.5-.01.07-.029.15-.039.221-.91 5.17-2.061 10.29-3.441 15.34-.84 3.08-1.77 6.13-2.779 9.16h-28.039c-6.641 0-12-4.62-12-10.33v-10.33c0-5.71 5.359-10.34 12-10.34h35.259z"/>
|
||||
<path fill="#2d2d2d" d="M344.3 121.307a183.1 183.1 0 0 0-2.335-4.893 168.52 168.52 0 0 0-19.74-30.843C273.761 25.437 188.442 4.828 116.421 40.61c-10.355 5.145-19.937 11.195-28.714 18.04-61.779 48.137-83.302 134.642-47.1 207.503 41.357 83.219 142.335 117.171 225.554 75.813 28.834-14.323 51.75-35.81 67.661-61.228a167.782 167.782 0 0 0 13.856-27.415 168.624 168.624 0 0 0 9.813-35.736c5.044-31.682 1.094-65.11-13.191-96.28zm-82.585 211.714c-78.277 38.901-173.261 6.966-212.162-71.313C15.498 193.171 35.742 111.801 93.86 66.522c-28.247 45.101-33.083 103.415-7.657 154.567 38.893 78.278 133.875 110.204 212.153 71.313a158.733 158.733 0 0 0 27.005-16.976c-14.967 23.914-36.519 44.122-63.646 57.595z"/>
|
||||
<path fill="#94ce91" d="M317.467 173.986c0 5.707-5.373 10.333-12 10.333H128.443c-6.627 0-12-4.627-12-10.333v-10.333c0-5.707 5.373-10.334 12-10.334h177.023c6.627 0 12 4.627 12 10.334v10.333z"/>
|
||||
<path fill="#74aede" d="M331.586 119.066h-157.75c-6.631 0-12-4.64-12-10.34v-10.33c0-5.71 5.369-10.33 12-10.33h137.439c.42.5.83 1 1.24 1.51 1.32 1.63 2.609 3.3 3.869 4.99a167.686 167.686 0 0 1 15.202 24.5z"/>
|
||||
<path fill="#ffeea6" d="M283.365 229.121v10.334c0 5.709-5.381 10.333-12 10.333H166.834c-6.619 0-12-4.624-12-10.333v-10.334c0-5.7 5.381-10.333 12-10.333h104.531c6.619 0 12 4.633 12 10.333z"/>
|
||||
<path fill="#f3777a" d="M345.586 218.786c-.16 1.26-.35 2.52-.551 3.779-.129.83-.27 1.671-.41 2.5-.01.07-.029.15-.039.221-.91 5.17-2.061 10.29-3.441 15.34-.84 3.08-1.77 6.13-2.779 9.16h-28.039c-6.641 0-12-4.62-12-10.33v-10.33c0-5.71 5.359-10.34 12-10.34h35.259z"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
@ -4,9 +4,9 @@
|
||||
<stop offset="1" stop-color="#ffeea6"/>
|
||||
</linearGradient>
|
||||
<circle cx="191.292" cy="191.977" r="158.977" fill="url(#a)"/>
|
||||
<path fill="#2D2D2D" d="M344.3 121.307a183.1 183.1 0 0 0-2.335-4.893 168.52 168.52 0 0 0-19.74-30.843C273.761 25.437 188.442 4.828 116.421 40.61c-10.355 5.145-19.937 11.195-28.714 18.04-61.779 48.137-83.302 134.642-47.1 207.503 41.357 83.219 142.335 117.171 225.554 75.813 28.834-14.323 51.75-35.81 67.661-61.228a167.782 167.782 0 0 0 13.856-27.415 168.624 168.624 0 0 0 9.813-35.736c5.044-31.682 1.094-65.11-13.191-96.28zm-82.585 211.714c-78.277 38.901-173.261 6.966-212.162-71.313C15.498 193.171 35.742 111.801 93.86 66.522c-28.247 45.101-33.083 103.415-7.657 154.567 38.893 78.278 133.875 110.204 212.153 71.313a158.733 158.733 0 0 0 27.005-16.976c-14.967 23.914-36.519 44.122-63.646 57.595z"/>
|
||||
<path fill="#94CE91" d="M317.467 173.986c0 5.707-5.373 10.333-12 10.333H128.443c-6.627 0-12-4.627-12-10.333v-10.333c0-5.707 5.373-10.334 12-10.334h177.023c6.627 0 12 4.627 12 10.334v10.333z"/>
|
||||
<path fill="#74AEDE" d="M331.586 119.066h-157.75c-6.631 0-12-4.64-12-10.34v-10.33c0-5.71 5.369-10.33 12-10.33h137.439c.42.5.83 1 1.24 1.51 1.32 1.63 2.609 3.3 3.869 4.99a167.686 167.686 0 0 1 15.202 24.5z"/>
|
||||
<path fill="#FFEEA6" d="M283.365 229.121v10.334c0 5.709-5.381 10.333-12 10.333H166.834c-6.619 0-12-4.624-12-10.333v-10.334c0-5.7 5.381-10.333 12-10.333h104.531c6.619 0 12 4.633 12 10.333z"/>
|
||||
<path fill="#F3777A" d="M345.586 218.786c-.16 1.26-.35 2.52-.551 3.779-.129.83-.27 1.671-.41 2.5-.01.07-.029.15-.039.221-.91 5.17-2.061 10.29-3.441 15.34-.84 3.08-1.77 6.13-2.779 9.16h-28.039c-6.641 0-12-4.62-12-10.33v-10.33c0-5.71 5.359-10.34 12-10.34h35.259z"/>
|
||||
<path fill="#2d2d2d" d="M344.3 121.307a183.1 183.1 0 0 0-2.335-4.893 168.52 168.52 0 0 0-19.74-30.843C273.761 25.437 188.442 4.828 116.421 40.61c-10.355 5.145-19.937 11.195-28.714 18.04-61.779 48.137-83.302 134.642-47.1 207.503 41.357 83.219 142.335 117.171 225.554 75.813 28.834-14.323 51.75-35.81 67.661-61.228a167.782 167.782 0 0 0 13.856-27.415 168.624 168.624 0 0 0 9.813-35.736c5.044-31.682 1.094-65.11-13.191-96.28zm-82.585 211.714c-78.277 38.901-173.261 6.966-212.162-71.313C15.498 193.171 35.742 111.801 93.86 66.522c-28.247 45.101-33.083 103.415-7.657 154.567 38.893 78.278 133.875 110.204 212.153 71.313a158.733 158.733 0 0 0 27.005-16.976c-14.967 23.914-36.519 44.122-63.646 57.595z"/>
|
||||
<path fill="#94ce91" d="M317.467 173.986c0 5.707-5.373 10.333-12 10.333H128.443c-6.627 0-12-4.627-12-10.333v-10.333c0-5.707 5.373-10.334 12-10.334h177.023c6.627 0 12 4.627 12 10.334v10.333z"/>
|
||||
<path fill="#74aede" d="M331.586 119.066h-157.75c-6.631 0-12-4.64-12-10.34v-10.33c0-5.71 5.369-10.33 12-10.33h137.439c.42.5.83 1 1.24 1.51 1.32 1.63 2.609 3.3 3.869 4.99a167.686 167.686 0 0 1 15.202 24.5z"/>
|
||||
<path fill="#ffeea6" d="M283.365 229.121v10.334c0 5.709-5.381 10.333-12 10.333H166.834c-6.619 0-12-4.624-12-10.333v-10.334c0-5.7 5.381-10.333 12-10.333h104.531c6.619 0 12 4.633 12 10.333z"/>
|
||||
<path fill="#f3777a" d="M345.586 218.786c-.16 1.26-.35 2.52-.551 3.779-.129.83-.27 1.671-.41 2.5-.01.07-.029.15-.039.221-.91 5.17-2.061 10.29-3.441 15.34-.84 3.08-1.77 6.13-2.779 9.16h-28.039c-6.641 0-12-4.62-12-10.33v-10.33c0-5.71 5.359-10.34 12-10.34h35.259z"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
@ -3,7 +3,7 @@ const black = '#2d2d2d';
|
||||
const red = '#f2777a';
|
||||
const green = '#92d192';
|
||||
const yellow = '#ffd479';
|
||||
const blue = '#6AB0F3';
|
||||
const blue = '#6ab0f3';
|
||||
const magenta = '#e1a6f2';
|
||||
const cyan = '#76d4d6';
|
||||
const white = '#b3b9c5';
|
||||
@ -11,7 +11,7 @@ const lightBlack = '#777c85';
|
||||
const lightRed = '#f2777a';
|
||||
const lightGreen = '#76d4d6';
|
||||
const lightYellow = '#ffeea6';
|
||||
const lightBlue = '#6AB0F3';
|
||||
const lightBlue = '#6ab0f3';
|
||||
const lightMagenta = '#e1a6f2';
|
||||
const lightCyan = '#76d4d6';
|
||||
const lightWhite = '#ffffff';
|
||||
@ -33,7 +33,7 @@ exports.decorateConfig = config =>
|
||||
background-color: rgba(255, 255, 255, 0.02);
|
||||
}
|
||||
.tab_text {
|
||||
background-color: rgba(255, 255, 255, 0.02);;
|
||||
background-color: rgba(255, 255, 255, 0.02);
|
||||
}
|
||||
.tab_active {
|
||||
background-color: ${black};
|
||||
|
@ -4,9 +4,9 @@
|
||||
<stop offset="1" stop-color="#ffeea6"/>
|
||||
</linearGradient>
|
||||
<circle cx="191.292" cy="191.977" r="158.977" fill="url(#a)"/>
|
||||
<path fill="#2D2D2D" d="M344.3 121.307a183.1 183.1 0 0 0-2.335-4.893 168.52 168.52 0 0 0-19.74-30.843C273.761 25.437 188.442 4.828 116.421 40.61c-10.355 5.145-19.937 11.195-28.714 18.04-61.779 48.137-83.302 134.642-47.1 207.503 41.357 83.219 142.335 117.171 225.554 75.813 28.834-14.323 51.75-35.81 67.661-61.228a167.782 167.782 0 0 0 13.856-27.415 168.624 168.624 0 0 0 9.813-35.736c5.044-31.682 1.094-65.11-13.191-96.28zm-82.585 211.714c-78.277 38.901-173.261 6.966-212.162-71.313C15.498 193.171 35.742 111.801 93.86 66.522c-28.247 45.101-33.083 103.415-7.657 154.567 38.893 78.278 133.875 110.204 212.153 71.313a158.733 158.733 0 0 0 27.005-16.976c-14.967 23.914-36.519 44.122-63.646 57.595z"/>
|
||||
<path fill="#94CE91" d="M317.467 173.986c0 5.707-5.373 10.333-12 10.333H128.443c-6.627 0-12-4.627-12-10.333v-10.333c0-5.707 5.373-10.334 12-10.334h177.023c6.627 0 12 4.627 12 10.334v10.333z"/>
|
||||
<path fill="#74AEDE" d="M331.586 119.066h-157.75c-6.631 0-12-4.64-12-10.34v-10.33c0-5.71 5.369-10.33 12-10.33h137.439c.42.5.83 1 1.24 1.51 1.32 1.63 2.609 3.3 3.869 4.99a167.686 167.686 0 0 1 15.202 24.5z"/>
|
||||
<path fill="#FFEEA6" d="M283.365 229.121v10.334c0 5.709-5.381 10.333-12 10.333H166.834c-6.619 0-12-4.624-12-10.333v-10.334c0-5.7 5.381-10.333 12-10.333h104.531c6.619 0 12 4.633 12 10.333z"/>
|
||||
<path fill="#F3777A" d="M345.586 218.786c-.16 1.26-.35 2.52-.551 3.779-.129.83-.27 1.671-.41 2.5-.01.07-.029.15-.039.221-.91 5.17-2.061 10.29-3.441 15.34-.84 3.08-1.77 6.13-2.779 9.16h-28.039c-6.641 0-12-4.62-12-10.33v-10.33c0-5.71 5.359-10.34 12-10.34h35.259z"/>
|
||||
<path fill="#2d2d2d" d="M344.3 121.307a183.1 183.1 0 0 0-2.335-4.893 168.52 168.52 0 0 0-19.74-30.843C273.761 25.437 188.442 4.828 116.421 40.61c-10.355 5.145-19.937 11.195-28.714 18.04-61.779 48.137-83.302 134.642-47.1 207.503 41.357 83.219 142.335 117.171 225.554 75.813 28.834-14.323 51.75-35.81 67.661-61.228a167.782 167.782 0 0 0 13.856-27.415 168.624 168.624 0 0 0 9.813-35.736c5.044-31.682 1.094-65.11-13.191-96.28zm-82.585 211.714c-78.277 38.901-173.261 6.966-212.162-71.313C15.498 193.171 35.742 111.801 93.86 66.522c-28.247 45.101-33.083 103.415-7.657 154.567 38.893 78.278 133.875 110.204 212.153 71.313a158.733 158.733 0 0 0 27.005-16.976c-14.967 23.914-36.519 44.122-63.646 57.595z"/>
|
||||
<path fill="#94ce91" d="M317.467 173.986c0 5.707-5.373 10.333-12 10.333H128.443c-6.627 0-12-4.627-12-10.333v-10.333c0-5.707 5.373-10.334 12-10.334h177.023c6.627 0 12 4.627 12 10.334v10.333z"/>
|
||||
<path fill="#74aede" d="M331.586 119.066h-157.75c-6.631 0-12-4.64-12-10.34v-10.33c0-5.71 5.369-10.33 12-10.33h137.439c.42.5.83 1 1.24 1.51 1.32 1.63 2.609 3.3 3.869 4.99a167.686 167.686 0 0 1 15.202 24.5z"/>
|
||||
<path fill="#ffeea6" d="M283.365 229.121v10.334c0 5.709-5.381 10.333-12 10.333H166.834c-6.619 0-12-4.624-12-10.333v-10.334c0-5.7 5.381-10.333 12-10.333h104.531c6.619 0 12 4.633 12 10.333z"/>
|
||||
<path fill="#f3777a" d="M345.586 218.786c-.16 1.26-.35 2.52-.551 3.779-.129.83-.27 1.671-.41 2.5-.01.07-.029.15-.039.221-.91 5.17-2.061 10.29-3.441 15.34-.84 3.08-1.77 6.13-2.779 9.16h-28.039c-6.641 0-12-4.62-12-10.33v-10.33c0-5.71 5.359-10.34 12-10.34h35.259z"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
@ -4,9 +4,9 @@
|
||||
<stop offset="1" stop-color="#ffeea6"/>
|
||||
</linearGradient>
|
||||
<circle cx="191.292" cy="191.977" r="158.977" fill="url(#a)"/>
|
||||
<path fill="#2D2D2D" d="M344.3 121.307a183.1 183.1 0 0 0-2.335-4.893 168.52 168.52 0 0 0-19.74-30.843C273.761 25.437 188.442 4.828 116.421 40.61c-10.355 5.145-19.937 11.195-28.714 18.04-61.779 48.137-83.302 134.642-47.1 207.503 41.357 83.219 142.335 117.171 225.554 75.813 28.834-14.323 51.75-35.81 67.661-61.228a167.782 167.782 0 0 0 13.856-27.415 168.624 168.624 0 0 0 9.813-35.736c5.044-31.682 1.094-65.11-13.191-96.28zm-82.585 211.714c-78.277 38.901-173.261 6.966-212.162-71.313C15.498 193.171 35.742 111.801 93.86 66.522c-28.247 45.101-33.083 103.415-7.657 154.567 38.893 78.278 133.875 110.204 212.153 71.313a158.733 158.733 0 0 0 27.005-16.976c-14.967 23.914-36.519 44.122-63.646 57.595z"/>
|
||||
<path fill="#94CE91" d="M317.467 173.986c0 5.707-5.373 10.333-12 10.333H128.443c-6.627 0-12-4.627-12-10.333v-10.333c0-5.707 5.373-10.334 12-10.334h177.023c6.627 0 12 4.627 12 10.334v10.333z"/>
|
||||
<path fill="#74AEDE" d="M331.586 119.066h-157.75c-6.631 0-12-4.64-12-10.34v-10.33c0-5.71 5.369-10.33 12-10.33h137.439c.42.5.83 1 1.24 1.51 1.32 1.63 2.609 3.3 3.869 4.99a167.686 167.686 0 0 1 15.202 24.5z"/>
|
||||
<path fill="#FFEEA6" d="M283.365 229.121v10.334c0 5.709-5.381 10.333-12 10.333H166.834c-6.619 0-12-4.624-12-10.333v-10.334c0-5.7 5.381-10.333 12-10.333h104.531c6.619 0 12 4.633 12 10.333z"/>
|
||||
<path fill="#F3777A" d="M345.586 218.786c-.16 1.26-.35 2.52-.551 3.779-.129.83-.27 1.671-.41 2.5-.01.07-.029.15-.039.221-.91 5.17-2.061 10.29-3.441 15.34-.84 3.08-1.77 6.13-2.779 9.16h-28.039c-6.641 0-12-4.62-12-10.33v-10.33c0-5.71 5.359-10.34 12-10.34h35.259z"/>
|
||||
<path fill="#2d2d2d" d="M344.3 121.307a183.1 183.1 0 0 0-2.335-4.893 168.52 168.52 0 0 0-19.74-30.843C273.761 25.437 188.442 4.828 116.421 40.61c-10.355 5.145-19.937 11.195-28.714 18.04-61.779 48.137-83.302 134.642-47.1 207.503 41.357 83.219 142.335 117.171 225.554 75.813 28.834-14.323 51.75-35.81 67.661-61.228a167.782 167.782 0 0 0 13.856-27.415 168.624 168.624 0 0 0 9.813-35.736c5.044-31.682 1.094-65.11-13.191-96.28zm-82.585 211.714c-78.277 38.901-173.261 6.966-212.162-71.313C15.498 193.171 35.742 111.801 93.86 66.522c-28.247 45.101-33.083 103.415-7.657 154.567 38.893 78.278 133.875 110.204 212.153 71.313a158.733 158.733 0 0 0 27.005-16.976c-14.967 23.914-36.519 44.122-63.646 57.595z"/>
|
||||
<path fill="#94ce91" d="M317.467 173.986c0 5.707-5.373 10.333-12 10.333H128.443c-6.627 0-12-4.627-12-10.333v-10.333c0-5.707 5.373-10.334 12-10.334h177.023c6.627 0 12 4.627 12 10.334v10.333z"/>
|
||||
<path fill="#74aede" d="M331.586 119.066h-157.75c-6.631 0-12-4.64-12-10.34v-10.33c0-5.71 5.369-10.33 12-10.33h137.439c.42.5.83 1 1.24 1.51 1.32 1.63 2.609 3.3 3.869 4.99a167.686 167.686 0 0 1 15.202 24.5z"/>
|
||||
<path fill="#ffeea6" d="M283.365 229.121v10.334c0 5.709-5.381 10.333-12 10.333H166.834c-6.619 0-12-4.624-12-10.333v-10.334c0-5.7 5.381-10.333 12-10.333h104.531c6.619 0 12 4.633 12 10.333z"/>
|
||||
<path fill="#f3777a" d="M345.586 218.786c-.16 1.26-.35 2.52-.551 3.779-.129.83-.27 1.671-.41 2.5-.01.07-.029.15-.039.221-.91 5.17-2.061 10.29-3.441 15.34-.84 3.08-1.77 6.13-2.779 9.16h-28.039c-6.641 0-12-4.62-12-10.33v-10.33c0-5.71 5.359-10.34 12-10.34h35.259z"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
@ -4,9 +4,9 @@
|
||||
<stop offset="1" stop-color="#ffeea6"/>
|
||||
</linearGradient>
|
||||
<circle cx="191.292" cy="191.977" r="158.977" fill="url(#a)"/>
|
||||
<path fill="#2D2D2D" d="M344.3 121.307a183.1 183.1 0 0 0-2.335-4.893 168.52 168.52 0 0 0-19.74-30.843C273.761 25.437 188.442 4.828 116.421 40.61c-10.355 5.145-19.937 11.195-28.714 18.04-61.779 48.137-83.302 134.642-47.1 207.503 41.357 83.219 142.335 117.171 225.554 75.813 28.834-14.323 51.75-35.81 67.661-61.228a167.782 167.782 0 0 0 13.856-27.415 168.624 168.624 0 0 0 9.813-35.736c5.044-31.682 1.094-65.11-13.191-96.28zm-82.585 211.714c-78.277 38.901-173.261 6.966-212.162-71.313C15.498 193.171 35.742 111.801 93.86 66.522c-28.247 45.101-33.083 103.415-7.657 154.567 38.893 78.278 133.875 110.204 212.153 71.313a158.733 158.733 0 0 0 27.005-16.976c-14.967 23.914-36.519 44.122-63.646 57.595z"/>
|
||||
<path fill="#94CE91" d="M317.467 173.986c0 5.707-5.373 10.333-12 10.333H128.443c-6.627 0-12-4.627-12-10.333v-10.333c0-5.707 5.373-10.334 12-10.334h177.023c6.627 0 12 4.627 12 10.334v10.333z"/>
|
||||
<path fill="#74AEDE" d="M331.586 119.066h-157.75c-6.631 0-12-4.64-12-10.34v-10.33c0-5.71 5.369-10.33 12-10.33h137.439c.42.5.83 1 1.24 1.51 1.32 1.63 2.609 3.3 3.869 4.99a167.686 167.686 0 0 1 15.202 24.5z"/>
|
||||
<path fill="#FFEEA6" d="M283.365 229.121v10.334c0 5.709-5.381 10.333-12 10.333H166.834c-6.619 0-12-4.624-12-10.333v-10.334c0-5.7 5.381-10.333 12-10.333h104.531c6.619 0 12 4.633 12 10.333z"/>
|
||||
<path fill="#F3777A" d="M345.586 218.786c-.16 1.26-.35 2.52-.551 3.779-.129.83-.27 1.671-.41 2.5-.01.07-.029.15-.039.221-.91 5.17-2.061 10.29-3.441 15.34-.84 3.08-1.77 6.13-2.779 9.16h-28.039c-6.641 0-12-4.62-12-10.33v-10.33c0-5.71 5.359-10.34 12-10.34h35.259z"/>
|
||||
<path fill="#2d2d2d" d="M344.3 121.307a183.1 183.1 0 0 0-2.335-4.893 168.52 168.52 0 0 0-19.74-30.843C273.761 25.437 188.442 4.828 116.421 40.61c-10.355 5.145-19.937 11.195-28.714 18.04-61.779 48.137-83.302 134.642-47.1 207.503 41.357 83.219 142.335 117.171 225.554 75.813 28.834-14.323 51.75-35.81 67.661-61.228a167.782 167.782 0 0 0 13.856-27.415 168.624 168.624 0 0 0 9.813-35.736c5.044-31.682 1.094-65.11-13.191-96.28zm-82.585 211.714c-78.277 38.901-173.261 6.966-212.162-71.313C15.498 193.171 35.742 111.801 93.86 66.522c-28.247 45.101-33.083 103.415-7.657 154.567 38.893 78.278 133.875 110.204 212.153 71.313a158.733 158.733 0 0 0 27.005-16.976c-14.967 23.914-36.519 44.122-63.646 57.595z"/>
|
||||
<path fill="#94ce91" d="M317.467 173.986c0 5.707-5.373 10.333-12 10.333H128.443c-6.627 0-12-4.627-12-10.333v-10.333c0-5.707 5.373-10.334 12-10.334h177.023c6.627 0 12 4.627 12 10.334v10.333z"/>
|
||||
<path fill="#74aede" d="M331.586 119.066h-157.75c-6.631 0-12-4.64-12-10.34v-10.33c0-5.71 5.369-10.33 12-10.33h137.439c.42.5.83 1 1.24 1.51 1.32 1.63 2.609 3.3 3.869 4.99a167.686 167.686 0 0 1 15.202 24.5z"/>
|
||||
<path fill="#ffeea6" d="M283.365 229.121v10.334c0 5.709-5.381 10.333-12 10.333H166.834c-6.619 0-12-4.624-12-10.333v-10.334c0-5.7 5.381-10.333 12-10.333h104.531c6.619 0 12 4.633 12 10.333z"/>
|
||||
<path fill="#f3777a" d="M345.586 218.786c-.16 1.26-.35 2.52-.551 3.779-.129.83-.27 1.671-.41 2.5-.01.07-.029.15-.039.221-.91 5.17-2.061 10.29-3.441 15.34-.84 3.08-1.77 6.13-2.779 9.16h-28.039c-6.641 0-12-4.62-12-10.33v-10.33c0-5.71 5.359-10.34 12-10.34h35.259z"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
@ -1,8 +1,8 @@
|
||||

|
||||
|
||||
# New Moon Syntax Theme
|
||||
# New Moon Syntax Theme
|
||||
|
||||
[](https://marketplace.visualstudio.com/items?itemName=taniarascia.new-moon-vscode) [](https://marketplace.visualstudio.com/items?itemName=taniarascia.new-moon-vscode) [](https://marketplace.visualstudio.com/items?itemName=taniarascia.new-moon-vscode) [](https://badges.ml/#new-moon) [](https://opensource.org/licenses/MIT)
|
||||
[](https://marketplace.visualstudio.com/items?itemName=taniarascia.new-moon-vscode) [](https://marketplace.visualstudio.com/items?itemName=taniarascia.new-moon-vscode) [](https://marketplace.visualstudio.com/items?itemName=taniarascia.new-moon-vscode) [](https://badges.ml/#new-moon) [](https://opensource.org/licenses/MIT)
|
||||
|
||||
The optimized dark theme for web development.
|
||||
|
||||
@ -59,13 +59,13 @@ New Moon is available for:
|
||||
| Foreground | Light |  `#b3b9c5` |
|
||||
| Function | Lightest |  `#ffffff` |
|
||||
| Variable | Red |  `#f2777a` |
|
||||
| Number | Orange |  `#fca369` |
|
||||
| Attribute | Yellow |  `#ffd479` |
|
||||
| Keyword | Light Yellow |  `#ffeea6` |
|
||||
| String | Green |  `#92d192` |
|
||||
| Class/Tag | Blue |  `#6AB0F3` |
|
||||
| Constant/Pseudo | Aqua |  `#76d4d6` |
|
||||
| Support | Purple |  `#e1a6f2` |
|
||||
| Number | Orange |  `#fca369` |
|
||||
| Attribute | Yellow |  `#ffd479` |
|
||||
| Keyword | Light Yellow |  `#ffeea6` |
|
||||
| String | Green |  `#92d192` |
|
||||
| Class/Tag | Blue |  `#6ab0f3` |
|
||||
| Constant/Pseudo | Aqua |  `#76d4d6` |
|
||||
| Support | Purple |  `#e1a6f2` |
|
||||
| Operator | Beige |  `#ac8d58` |
|
||||
|
||||
## Screenshots
|
||||
@ -101,4 +101,4 @@ New Moon is available for:
|
||||
|
||||
## License
|
||||
|
||||
This project is open source and available under the [MIT License](LICENSE).
|
||||
This project is open source and available under the [MIT License](LICENSE).
|
||||
|
@ -9,7 +9,7 @@
|
||||
"editor.selectionBackground": "#444444",
|
||||
"editor.whitespaces": "#555555",
|
||||
"editorCursor.foreground": "#ffeea6",
|
||||
"editorSuggestWidget.highlightForeground": "#FFD479",
|
||||
"editorSuggestWidget.highlightForeground": "#ffd479",
|
||||
"editorSuggestWidget.background": "#2d2d2d",
|
||||
"editorSuggestWidget.Hoverbackground": "#444444",
|
||||
"editorSuggestWidget.border": "#202020",
|
||||
@ -22,12 +22,12 @@
|
||||
"statusBarItem.hoverBackground": "#111",
|
||||
"findRangeHighlightBackground": "#66666699",
|
||||
"editor.findMatchBackground": "#101010",
|
||||
"editor.findMatchBorder": "#FFD479",
|
||||
"editor.findMatchBorder": "#ffd479",
|
||||
"button.background": "#4a7baa",
|
||||
"button.foreground": "#FFFFFF",
|
||||
"button.hoverBackground": "#6AB0F3",
|
||||
"textLink.foreground": "#6AB0F3",
|
||||
"textLink.activeForeground": "#6AB0F3",
|
||||
"button.foreground": "#ffffff",
|
||||
"button.hoverBackground": "#6ab0f3",
|
||||
"textLink.foreground": "#6ab0f3",
|
||||
"textLink.activeForeground": "#6ab0f3",
|
||||
"editorLineNumber.foreground": "#606060",
|
||||
"editorLineNumber.activeForeground": "#909090",
|
||||
"scrollbarSlider.background": "#44444480",
|
||||
@ -37,13 +37,13 @@
|
||||
"sideBarSectionHeader.background": "#202020",
|
||||
"statusBar.background": "#202020",
|
||||
"statusBar.foreground": "#909090",
|
||||
"statusBar.noFolderBackground": "#21252B",
|
||||
"statusBar.debuggingForeground": "#FFFFFF",
|
||||
"extensionButton.prominentBackground": "#FFD479",
|
||||
"statusBar.noFolderBackground": "#21252b",
|
||||
"statusBar.debuggingForeground": "#ffffff",
|
||||
"extensionButton.prominentBackground": "#ffd479",
|
||||
"extensionButton.prominentForeground": "#222222",
|
||||
"extensionButton.prominentHoverBackground": "#ffeea6",
|
||||
"badge.background": "#4a7baa",
|
||||
"badge.foreground": "#D7DAE0",
|
||||
"badge.foreground": "#d7dae0",
|
||||
"list.hoverBackground": "#383838",
|
||||
"list.inactiveSelectionBackground": "#444444",
|
||||
"list.activeSelectionBackground": "#4a7baa66",
|
||||
@ -52,28 +52,28 @@
|
||||
"editorBracketMatch.border": "#ffffff",
|
||||
"editorError.foreground": "#f2777a",
|
||||
"panel.background": "#202020",
|
||||
"inputOption.activeBorder": "#FFD479",
|
||||
"inputOption.activeBorder": "#ffd479",
|
||||
"inputValidation.warningBorder": "#f2777a",
|
||||
"input.background": "#333333",
|
||||
"editor.findMatchHighlightBackground": "#cda86955",
|
||||
"diffEditor.insertedTextBackground": "#92D19244",
|
||||
"diffEditor.insertedTextBackground": "#92d19244",
|
||||
"diffEditor.removedTextBackground": "#f2777a44",
|
||||
"diffEditor.border": "#444444",
|
||||
"terminal.background": "#242424",
|
||||
"terminal.foreground": "#b3b9c5",
|
||||
"terminal.ansiBlack": "#666666",
|
||||
"terminal.ansiBlue": "#6AB0F3",
|
||||
"terminal.ansiCyan": "#62CFCF",
|
||||
"terminal.ansiGreen": "#92D192",
|
||||
"terminal.ansiMagenta": "#E1A6F2",
|
||||
"terminal.ansiBlue": "#6ab0f3",
|
||||
"terminal.ansiCyan": "#62cfcf",
|
||||
"terminal.ansiGreen": "#92d192",
|
||||
"terminal.ansiMagenta": "#e1a6f2",
|
||||
"terminal.ansiRed": "#f2777a",
|
||||
"terminal.ansiWhite": "#ffffff",
|
||||
"terminal.ansiYellow": "#ffd479",
|
||||
"terminal.ansiBrightBlack": "#777777",
|
||||
"terminal.ansiBrightBlue": "#6AB0F3",
|
||||
"terminal.ansiBrightCyan": "#62CFCF",
|
||||
"terminal.ansiBrightGreen": "#92D192",
|
||||
"terminal.ansiBrightMagenta": "#E1A6F2",
|
||||
"terminal.ansiBrightBlue": "#6ab0f3",
|
||||
"terminal.ansiBrightCyan": "#62cfcf",
|
||||
"terminal.ansiBrightGreen": "#92d192",
|
||||
"terminal.ansiBrightMagenta": "#e1a6f2",
|
||||
"terminal.ansiBrightRed": "#f2777a",
|
||||
"terminal.ansiBrightWhite": "#ffffff",
|
||||
"terminal.ansiBrightYellow": "#ffd479",
|
||||
@ -94,7 +94,7 @@
|
||||
},
|
||||
{
|
||||
"settings": {
|
||||
"foreground": "#92D192"
|
||||
"foreground": "#92d192"
|
||||
},
|
||||
"name": "String",
|
||||
"scope": "string, constant.other.symbol, entity.other.inherited-class, punctuation.definition.string, markup.underline.link.image.markdown, string.other.link, markup.raw.inline, markup.inserted, markup.inserted.git_gutter, string.other.link.title.markdown, variable.parameter.url.scss"
|
||||
@ -122,7 +122,7 @@
|
||||
},
|
||||
{
|
||||
"settings": {
|
||||
"foreground": "#6AB0F3"
|
||||
"foreground": "#6ab0f3"
|
||||
},
|
||||
"name": "Tag",
|
||||
"scope": "support.class, entity.name.type.class, meta.entity.new.name.expr, entity.name.tag.structure.any.html, meta.tag.structure.any.html, punctuation.definition.tag.html, meta.tag.sgml.doctype.html, keyword.other.special-method, entity.name.type, entity.name.tag, support.variable.dom.js, meta.tag.structure.any.html, markup.bold, punctuation.definition.bold, entity.name.type.ts, support.variable.dom.ts, entity.name.function.graphql"
|
||||
@ -164,14 +164,14 @@
|
||||
},
|
||||
{
|
||||
"settings": {
|
||||
"foreground": "#E1A6F2"
|
||||
"foreground": "#e1a6f2"
|
||||
},
|
||||
"name": "Support",
|
||||
"scope": "support.function, constant, entity.other.attribute-name.id, markup.italic, punctuation.definition.italic, markup.changed, markup.changed.git_gutter, support.constant.property-value"
|
||||
},
|
||||
{
|
||||
"settings": {
|
||||
"foreground": "#AC8D58"
|
||||
"foreground": "#ac8d58"
|
||||
},
|
||||
"name": "Operator",
|
||||
"scope": "keyword.operator, constant.character.escape, constant.character.escape.json, entity.other.attribute-name.pseudo-element.css, entity.other.attribute-name.pseudo-class.css, keyword.operator, punctuation.accessor.js, punctuation.definition.block.tag.jsdoc, storage.type.class.jsdoc"
|
||||
@ -186,7 +186,7 @@
|
||||
},
|
||||
{
|
||||
"settings": {
|
||||
"foreground": "#62CFCF"
|
||||
"foreground": "#62cfcf"
|
||||
},
|
||||
"name": "Variable Alternative",
|
||||
"scope": "entity.other.attribute-name.pseudo-class.css, constant.other.php, markup.italic.markdown, punctuation.definition.italic.markdown, string.regexp, entity.other.attribute-name.pseudo-element.css, meta.image.inline.markdown, string.other.link.description.markdown"
|
||||
|