| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 */ | 27 */ |
| 28 .cm-js-keyword {color: hsl(310, 86%, 36%);} | 28 .cm-js-keyword {color: hsl(310, 86%, 36%);} |
| 29 .cm-js-number {color: hsl(248, 100%, 41%);} | 29 .cm-js-number {color: hsl(248, 100%, 41%);} |
| 30 .cm-js-comment {color: hsl(120, 100%, 23%) !important; font-style: italic;} | 30 .cm-js-comment {color: hsl(120, 100%, 23%) !important; font-style: italic;} |
| 31 .cm-js-string {color: hsl(1, 80%, 43%) !important;} | 31 .cm-js-string {color: hsl(1, 80%, 43%) !important;} |
| 32 .cm-js-string-2 {color: hsl(1, 99%, 39%) !important;} | 32 .cm-js-string-2 {color: hsl(1, 99%, 39%) !important;} |
| 33 .cm-js-atom {color: hsl(310, 86%, 36%);} | 33 .cm-js-atom {color: hsl(310, 86%, 36%);} |
| 34 .cm-js-def {color: hsl(240, 73%, 38%);} | 34 .cm-js-def {color: hsl(240, 73%, 38%);} |
| 35 .cm-js-operator {color: hsl(184, 71%, 31%); } | 35 .cm-js-operator {color: hsl(27, 100%, 30%);} |
| 36 .cm-js-variable {color: hsl(185, 30%, 39%);} | 36 .cm-js-meta {color: hsl(27, 100%, 30%);} |
| 37 .cm-js-property {color: black;} | 37 .cm-js-variable {color: hsl(0, 0%, 0%);} |
| 38 .cm-js-variable-2 {color: hsl(240, 73%, 38%);} |
| 39 .cm-js-property {color: black;} |
| 38 | 40 |
| 39 .cm-css-keyword { color: rgb(7, 144, 154);} | 41 .cm-css-keyword { color: rgb(7, 144, 154);} |
| 40 .cm-css-number {color: rgb(50, 0, 255);} | 42 .cm-css-number {color: rgb(50, 0, 255);} |
| 41 .cm-css-comment {color: rgb(0, 116, 0) !important;} | 43 .cm-css-comment {color: rgb(0, 116, 0) !important;} |
| 42 .cm-css-def {color: rgb(200, 0, 0);} | 44 .cm-css-def {color: rgb(200, 0, 0);} |
| 43 .cm-css-meta {color: rgb(200, 0, 0);} | 45 .cm-css-meta {color: rgb(200, 0, 0);} |
| 44 .cm-css-atom {color: rgb(7, 144, 154);} | 46 .cm-css-atom {color: rgb(7, 144, 154);} |
| 45 .cm-css-string {color: rgb(7, 144, 154) !important;} | 47 .cm-css-string {color: rgb(7, 144, 154) !important;} |
| 46 .cm-css-string-2 {color: rgb(7, 144, 154) !important;} | 48 .cm-css-string-2 {color: rgb(7, 144, 154) !important;} |
| 47 .cm-css-link {color: rgb(7, 144, 154) !important;} | 49 .cm-css-link {color: rgb(7, 144, 154) !important;} |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 .-theme-with-dark-background .devtools-link, | 125 .-theme-with-dark-background .devtools-link, |
| 124 :host-context(.-theme-with-dark-background) .devtools-link { | 126 :host-context(.-theme-with-dark-background) .devtools-link { |
| 125 color: hsl(0, 0%, 67%); | 127 color: hsl(0, 0%, 67%); |
| 126 } | 128 } |
| 127 | 129 |
| 128 .webkit-html-end-of-file { | 130 .webkit-html-end-of-file { |
| 129 /* Keep this in sync with view-source.css (.webkit-html-end-of-file) */ | 131 /* Keep this in sync with view-source.css (.webkit-html-end-of-file) */ |
| 130 color: rgb(255, 0, 0); | 132 color: rgb(255, 0, 0); |
| 131 font-weight: bold; | 133 font-weight: bold; |
| 132 } | 134 } |
| OLD | NEW |