├── .editorconfig ├── .eslintrc ├── .gitattributes ├── .github ├── CONTRIBUTING.md └── workflows │ └── ci.yml ├── .gitignore ├── .mailmap ├── .npmrc ├── .stylelintrc ├── AUTHORS ├── LICENSE ├── README.md ├── defaults.json ├── github-community-dark.user.css ├── images └── screenshots │ └── after_blue.png ├── package.json ├── themes ├── ambiance.min.css ├── chaos.min.css ├── clouds-midnight.min.css ├── cobalt.min.css ├── github-dark.min.css ├── idle-fingers.min.css ├── kr-theme.min.css ├── merbivore-soft.min.css ├── merbivore.min.css ├── mono-industrial-clear.min.css ├── mono-industrial.min.css ├── monokai-spacegray-eighties.min.css ├── monokai.min.css ├── obsidian.min.css ├── one-dark.min.css ├── pastel-on-dark.min.css ├── solarized-dark.min.css ├── terminal.min.css ├── tomorrow-night-blue.min.css ├── tomorrow-night-bright.min.css ├── tomorrow-night-eighties.min.css ├── tomorrow-night.min.css ├── twilight.min.css └── vibrant-ink.min.css └── tools ├── add-themes.js ├── authors ├── clean.js ├── update-usercss.js ├── usercss-template.css └── utils.js /.editorconfig: -------------------------------------------------------------------------------- 1 | # https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 2 7 | trim_trailing_whitespace = true 8 | end_of_line = lf 9 | charset = utf-8 10 | insert_final_newline = true 11 | 12 | [*.css] 13 | block_comment_start = /* 14 | block_comment = * 15 | block_comment_end = */ 16 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | root: true 2 | extends: eslint-config-silverwind 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to GitHub-Community-Dark 2 | 3 | 1. [Getting Involved](#getting-involved) 4 | 2. [How To Report style issues](#how-to-report-style-issues) 5 | 3. [Core Style Guide](#style-guide) 6 | 4. [Getting Started](#getting-started) 7 | 8 | ## Getting Involved 9 | 10 | There are a number of ways to get involved with the development of this Dark theme. Even if you've never contributed to an Open Source project before, we're always looking for help identifying missing styles or other issues. 11 | 12 | ## How to Report Style issues 13 | 14 | ### I don't know CSS 15 | 16 | If you don't know CSS very well and have found a missing style, please include as much as possible of following information when opening an issue: 17 | 18 | * Screenshot of the problem; include the element(s) in the console if at all possible 19 | * To select an element, target it with your mouse then right-click and choose "Inspect Element" 20 | * Please include both the HTML view and the element with the problem in the screenshot (see [issue #119](https://github.com/StylishThemes/GitHub-Dark/issues/119) for an example) 21 | * A URL to the page (if public). 22 | 23 | ### I rock at CSS & GitHub! 24 | 25 | * Follow the style guide below 26 | * Make any needed changes, then send us a pull request 27 | * Please include a URL to the page (if public) 28 | 29 | ## Style Guide 30 | 31 | * Use the provided `.editorconfig` file with your code editor. Don't know what that is? Then check out http://editorconfig.org/. 32 | * Limit to the [K&R (KNF variation style)](https://en.wikipedia.org/wiki/Indentation_style#Variant:_BSD_KNF), and **2 SPACE INDENTATION** (no tabs, and not more, and not less than 2 spaces). 33 | 34 | * K&R - KNF Variation Example: 35 | ```css 36 | element[attr='value'] { 37 | ··property: value; 38 | } 39 | ``` 40 | 41 | * **Not Allman** 42 | ```css 43 | element[property='value'] 44 | { 45 | ··property: value; 46 | } 47 | ``` 48 | 49 | * Strict space between the `selector` and the `{`: 50 | ```css 51 | /* good */ 52 | element[attr='value'] { } 53 | 54 | /* bad */ 55 | element[attr='value']{ } 56 | ``` 57 | 58 | * 2 Space indentation 59 | ```css 60 | /* good */ 61 | ··property: value; 62 | 63 | /* bad */ 64 | ····property: value; 65 | ----property: value; 66 | ·property: value; 67 | ``` 68 | 69 | * Try to wrap lines at around 80 characters. 70 | * Try to limit the style size: 71 | * Don't add any image URI's to the CSS; instead add the image into the `/images` directory; then point to using the following URL: `http://stylishthemes.github.io/GitHub-Community-Dark/images/`{my-image.png}. 72 | * If possible, reduce any added selectors. Remember that Stylus requires an `!important` flag to override default styling, so a selector starting from the body isn't always necessary. 73 | * Don't add any inline comments. If you want to make a comment, add it as a note in the commit. 74 | * If your CSS definition already exists within the style, do not add it again! Add your selector to the existing definition. 75 | * Insert any new CSS selectors in the available slot immediately before the style definition, or on a new line as needed. 76 | * If you want to add a new userstyle or usercss variable, please open an issue and discuss it with us first. 77 | * Don't include version bumps with your contribution, all releases are handled internally. 78 | * If your PR fixes an open issue or replaces another PR, include fixes/closes #issue-nr in your commit message title. [Read more on this](https://help.github.com/en/articles/closing-issues-using-keywords). 79 | 80 | ## Getting Started 81 | 82 | * [Download](https://github.com/StylishThemes/GitHub-Community-Dark/archive/master.zip), [fork](https://github.com/StylishThemes/GitHub-Community-Dark/fork) or clone this repository. 83 | * Use [node.js](http://nodejs.org/) to run `npm install`. 84 | * Make any changes to the `github-community-dark.user.css` file and save. 85 | 86 | ### Build & test 87 | 88 | * Create & change into a new branch of your local GitHub-Community-Dark repository. 89 | * Open the style in the Stylus editor, and make sure to have "live preview" checked for testing. 90 | * Once you are satisfied with the changes, select all the CSS (Ctrl + a), copy (Ctrl + c) then paste (Ctrl + v) it into your editor. 91 | * Run `npm test` to test the CSS changes. 92 | * Now you can add and commit the changes of the `github-community-dark.user.css` file to your fork's branch. 93 | * If you haven't already contributed, then run `npm run authors` to add your name to our list of contributors :smile: 94 | * Push the changes to your branch, then submit a pull request. 95 | * And thanks again for contributing! 96 | 97 | ### Development Scripts 98 | 99 | * `npm run authors`: Runs a batch file to rebuild the `AUTHORS` file. Update the `.mailmap` file for any duplicate entries. 100 | * `npm run clean`: Runs the perfectionist script & cleans up after it. 101 | * `npm run eslint`: Lint the JavaScript code in the `tools` directory. 102 | * `npm run lint`: Run eslint & stylelint scripts. 103 | * `npm run major`: Creates a semantic major release. 104 | * `npm run minor`: Creates a semantic minor release. 105 | * `npm run patch`: Creates a semantic patch release. 106 | * `npm run perfectionist`: Runs perfectionist only. CSS is not cleaned! 107 | * `npm run stylelint`: Run stylelint on the CSS file. 108 | * `npm run test`: Same as `npm run lint`. 109 | * `npm run update`: Update development dependencies. 110 | * `npm run usercss`: Update usercss variables using usercss template; variable data obtained from `defaults.json`. 111 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | pull_request: 8 | 9 | jobs: 10 | build: 11 | strategy: 12 | fail-fast: false 13 | matrix: 14 | os: [macOS-latest, ubuntu-latest, windows-latest] 15 | 16 | runs-on: ${{ matrix.os }} 17 | 18 | steps: 19 | - name: Checkout repo 20 | uses: actions/checkout@v2 21 | 22 | - name: Setup node 23 | uses: actions/setup-node@v1 24 | with: 25 | node-version: "12.x" 26 | 27 | - name: Install dependencies 28 | run: npm install 29 | 30 | - name: Run tests 31 | run: npm test 32 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # lockfiles 2 | package-lock.json 3 | yarn.lock 4 | 5 | # temp stuff 6 | tmp/ 7 | *.tmp 8 | *.bak 9 | 10 | # logs 11 | *.stackdump 12 | *.log 13 | 14 | # Build 15 | node_modules/ 16 | build.json 17 | *.build.css 18 | 19 | # Windows crap 20 | Thumbs.db 21 | Desktop.ini 22 | 23 | # Mac crap 24 | .DS_Store 25 | -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- 1 | Rob Garrison Mottie 2 | Rob Garrison Rob G 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- 1 | extends: stylelint-config-silverwind 2 | 3 | rules: 4 | block-no-empty: null 5 | csstree/validator: null 6 | declaration-block-no-duplicate-properties: null 7 | indentation: null 8 | max-empty-lines: 0 9 | selector-type-no-unknown: null 10 | font-family-no-missing-generic-family-keyword: null 11 | selector-pseudo-element-colon-notation: "double" 12 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | # Authors ordered by first contribution. 2 | 3 | Rob Garrison 4 | the-j0k3r <31389848+the-j0k3r@users.noreply.github.com> 5 | 6 | # Generated by tools/authors.sh 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Creative Commons Attribution-ShareAlike 4.0 International 2 | 3 | Creative Commons Corporation (“Creative Commons”) is not a law firm and does not 4 | provide legal services or legal advice. Distribution of Creative Commons public 5 | licenses does not create a lawyer-client or other relationship. Creative Commons 6 | makes its licenses and related information available on an “as-is” basis. 7 | Creative Commons gives no warranties regarding its licenses, any material 8 | licensed under their terms and conditions, or any related information. Creative 9 | Commons disclaims all liability for damages resulting from their use to the 10 | fullest extent possible. Using Creative Commons Public Licenses Creative Commons 11 | public licenses provide a standard set of terms and conditions that creators and 12 | other rights holders may use to share original works of authorship and other 13 | material subject to copyright and certain other rights specified in the public 14 | license below. The following considerations are for informational purposes only, 15 | are not exhaustive, and do not form part of our licenses. Considerations for 16 | licensors: Our public licenses are intended for use by those authorized to give 17 | the public permission to use material in ways otherwise restricted by copyright 18 | and certain other rights. Our licenses are irrevocable. Licensors should read 19 | and understand the terms and conditions of the license they choose before 20 | applying it. Licensors should also secure all rights necessary before applying 21 | our licenses so that the public can reuse the material as expected. Licensors 22 | should clearly mark any material not subject to the license. This includes other 23 | CC-licensed material, or material used under an exception or limitation to 24 | copyright. More considerations for licensors. Considerations for the public: By 25 | using one of our public licenses, a licensor grants the public permission to use 26 | the licensed material under specified terms and conditions. If the licensor’s 27 | permission is not necessary for any reason–for example, because of any 28 | applicable exception or limitation to copyright–then that use is not regulated 29 | by the license. Our licenses grant only permissions under copyright and certain 30 | other rights that a licensor has authority to grant. Use of the licensed 31 | material may still be restricted for other reasons, including because others 32 | have copyright or other rights in the material. A licensor may make special 33 | requests, such as asking that all changes be marked or described. Although not 34 | required by our licenses, you are encouraged to respect those requests where 35 | reasonable. More considerations for the public. 36 | 37 | Creative Commons Attribution-ShareAlike 4.0 International Public License 38 | 39 | By exercising the Licensed Rights (defined below), You accept and agree to be 40 | bound by the terms and conditions of this Creative Commons 41 | Attribution-ShareAlike 4.0 International Public License ("Public License"). To 42 | the extent this Public License may be interpreted as a contract, You are granted 43 | the Licensed Rights in consideration of Your acceptance of these terms and 44 | conditions, and the Licensor grants You such rights in consideration of benefits 45 | the Licensor receives from making the Licensed Material available under these 46 | terms and conditions. 47 | 48 | Section 1 – Definitions. 49 | 50 | a. Adapted Material means material subject to Copyright and Similar Rights that 51 | is derived from or based upon the Licensed Material and in which the Licensed 52 | Material is translated, altered, arranged, transformed, or otherwise modified in 53 | a manner requiring permission under the Copyright and Similar Rights held by the 54 | Licensor. For purposes of this Public License, where the Licensed Material is a 55 | musical work, performance, or sound recording, Adapted Material is always 56 | produced where the Licensed Material is synched in timed relation with a moving 57 | image. 58 | 59 | b. Adapter's License means the license You apply to Your Copyright and Similar 60 | Rights in Your contributions to Adapted Material in accordance with the terms 61 | and conditions of this Public License. 62 | 63 | c. BY-SA Compatible License means a license listed at 64 | creativecommons.org/compatiblelicenses, approved by Creative Commons as 65 | essentially the equivalent of this Public License. 66 | 67 | d. Copyright and Similar Rights means copyright and/or similar rights closely 68 | related to copyright including, without limitation, performance, broadcast, 69 | sound recording, and Sui Generis Database Rights, without regard to how the 70 | rights are labeled or categorized. For purposes of this Public License, the 71 | rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights. 72 | 73 | e. Effective Technological Measures means those measures that, in the absence of 74 | proper authority, may not be circumvented under laws fulfilling obligations 75 | under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, 76 | and/or similar international agreements. 77 | 78 | f. Exceptions and Limitations means fair use, fair dealing, and/or any other 79 | exception or limitation to Copyright and Similar Rights that applies to Your use 80 | of the Licensed Material. 81 | 82 | g. License Elements means the license attributes listed in the name of a 83 | Creative Commons Public License. The License Elements of this Public License are 84 | Attribution and ShareAlike. 85 | 86 | h. Licensed Material means the artistic or literary work, database, or other 87 | material to which the Licensor applied this Public License. 88 | 89 | i. Licensed Rights means the rights granted to You subject to the terms and 90 | conditions of this Public License, which are limited to all Copyright and 91 | Similar Rights that apply to Your use of the Licensed Material and that the 92 | Licensor has authority to license. 93 | 94 | j. Licensor means the individual(s) or entity(ies) granting rights under this 95 | Public License. 96 | 97 | k. Share means to provide material to the public by any means or process that 98 | requires permission under the Licensed Rights, such as reproduction, public 99 | display, public performance, distribution, dissemination, communication, or 100 | importation, and to make material available to the public including in ways that 101 | members of the public may access the material from a place and at a time 102 | individually chosen by them. 103 | 104 | l. Sui Generis Database Rights means rights other than copyright resulting from 105 | Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 106 | on the legal protection of databases, as amended and/or succeeded, as well as 107 | other essentially equivalent rights anywhere in the world. 108 | 109 | m. You means the individual or entity exercising the Licensed Rights under this 110 | Public License. Your has a corresponding meaning. 111 | 112 | Section 2 – Scope. 113 | 114 | a. License grant. 115 | 116 | 1. Subject to the terms and conditions of this Public License, the Licensor 117 | hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, 118 | irrevocable license to exercise the Licensed Rights in the Licensed Material to: 119 | 120 | A. reproduce and Share the Licensed Material, in whole or in part; and 121 | 122 | B. produce, reproduce, and Share Adapted Material. 123 | 124 | 2. Exceptions and Limitations. For the avoidance of doubt, where Exceptions and 125 | Limitations apply to Your use, this Public License does not apply, and You do 126 | not need to comply with its terms and conditions. 127 | 128 | 3. Term. The term of this Public License is specified in Section 6(a). 129 | 130 | 4. Media and formats; technical modifications allowed. The Licensor authorizes 131 | You to exercise the Licensed Rights in all media and formats whether now known 132 | or hereafter created, and to make technical modifications necessary to do so. 133 | The Licensor waives and/or agrees not to assert any right or authority to forbid 134 | You from making technical modifications necessary to exercise the Licensed 135 | Rights, including technical modifications necessary to circumvent Effective 136 | Technological Measures. For purposes of this Public License, simply making 137 | modifications authorized by this Section 2(a)(4) never produces Adapted 138 | Material. 139 | 140 | 5. Downstream recipients. 141 | 142 | A. Offer from the Licensor – Licensed Material. Every recipient of the Licensed 143 | Material automatically receives an offer from the Licensor to exercise the 144 | Licensed Rights under the terms and conditions of this Public License. 145 | 146 | B. Additional offer from the Licensor – Adapted Material. Every recipient of 147 | Adapted Material from You automatically receives an offer from the Licensor to 148 | exercise the Licensed Rights in the Adapted Material under the conditions of the 149 | Adapter’s License You apply. 150 | 151 | C. No downstream restrictions. You may not offer or impose any additional or 152 | different terms or conditions on, or apply any Effective Technological Measures 153 | to, the Licensed Material if doing so restricts exercise of the Licensed Rights 154 | by any recipient of the Licensed Material. 155 | 156 | 6. No endorsement. Nothing in this Public License constitutes or may be 157 | construed as permission to assert or imply that You are, or that Your use of the 158 | Licensed Material is, connected with, or sponsored, endorsed, or granted 159 | official status by, the Licensor or others designated to receive attribution as 160 | provided in Section 3(a)(1)(A)(i). 161 | 162 | b. Other rights. 163 | 164 | 1. Moral rights, such as the right of integrity, are not licensed under this 165 | Public License, nor are publicity, privacy, and/or other similar personality 166 | rights; however, to the extent possible, the Licensor waives and/or agrees not 167 | to assert any such rights held by the Licensor to the limited extent necessary 168 | to allow You to exercise the Licensed Rights, but not otherwise. 169 | 170 | 2. Patent and trademark rights are not licensed under this Public License. 171 | 172 | 3. To the extent possible, the Licensor waives any right to collect royalties 173 | from You for the exercise of the Licensed Rights, whether directly or through a 174 | collecting society under any voluntary or waivable statutory or compulsory 175 | licensing scheme. In all other cases the Licensor expressly reserves any right 176 | to collect such royalties. 177 | 178 | Section 3 – License Conditions. 179 | 180 | Your exercise of the Licensed Rights is expressly made subject to the following 181 | conditions. 182 | 183 | a. Attribution. 184 | 185 | 1. If You Share the Licensed Material (including in modified form), You must: 186 | 187 | A. retain the following if it is supplied by the Licensor with the Licensed 188 | Material: 189 | 190 | i. identification of the creator(s) of the Licensed Material and any others 191 | designated to receive attribution, in any reasonable manner requested by the 192 | Licensor (including by pseudonym if designated); 193 | 194 | ii. a copyright notice; 195 | 196 | iii. a notice that refers to this Public License; 197 | 198 | iv. a notice that refers to the disclaimer of warranties; 199 | 200 | v. a URI or hyperlink to the Licensed Material to the extent reasonably 201 | practicable; 202 | 203 | B. indicate if You modified the Licensed Material and retain an indication of 204 | any previous modifications; and 205 | 206 | C. indicate the Licensed Material is licensed under this Public License, and 207 | include the text of, or the URI or hyperlink to, this Public License. 208 | 209 | 2. You may satisfy the conditions in Section 3(a)(1) in any reasonable manner 210 | based on the medium, means, and context in which You Share the Licensed 211 | Material. For example, it may be reasonable to satisfy the conditions by 212 | providing a URI or hyperlink to a resource that includes the required 213 | information. 214 | 215 | 3. If requested by the Licensor, You must remove any of the information required 216 | by Section 3(a)(1)(A) to the extent reasonably practicable. 217 | 218 | b. ShareAlike.In addition to the conditions in Section 3(a), if You Share 219 | Adapted Material You produce, the following conditions also apply. 220 | 221 | 1. The Adapter’s License You apply must be a Creative Commons license with the 222 | same License Elements, this version or later, or a BY-SA Compatible License. 223 | 224 | 2. You must include the text of, or the URI or hyperlink to, the Adapter's 225 | License You apply. You may satisfy this condition in any reasonable manner based 226 | on the medium, means, and context in which You Share Adapted Material. 227 | 228 | 3. You may not offer or impose any additional or different terms or conditions 229 | on, or apply any Effective Technological Measures to, Adapted Material that 230 | restrict exercise of the rights granted under the Adapter's License You apply. 231 | 232 | Section 4 – Sui Generis Database Rights. 233 | 234 | Where the Licensed Rights include Sui Generis Database Rights that apply to Your 235 | use of the Licensed Material: 236 | 237 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, 238 | reuse, reproduce, and Share all or a substantial portion of the contents of the 239 | database; 240 | 241 | b. if You include all or a substantial portion of the database contents in a 242 | database in which You have Sui Generis Database Rights, then the database in 243 | which You have Sui Generis Database Rights (but not its individual contents) is 244 | Adapted Material, including for purposes of Section 3(b); and 245 | 246 | c. You must comply with the conditions in Section 3(a) if You Share all or a 247 | substantial portion of the contents of the database. For the avoidance of 248 | doubt, this Section 4 supplements and does not replace Your obligations under 249 | this Public License where the Licensed Rights include other Copyright and 250 | Similar Rights. 251 | 252 | Section 5 – Disclaimer of Warranties and Limitation of Liability. 253 | 254 | a. Unless otherwise separately undertaken by the Licensor, to the extent 255 | possible, the Licensor offers the Licensed Material as-is and as-available, and 256 | makes no representations or warranties of any kind concerning the Licensed 257 | Material, whether express, implied, statutory, or other. This includes, without 258 | limitation, warranties of title, merchantability, fitness for a particular 259 | purpose, non-infringement, absence of latent or other defects, accuracy, or the 260 | presence or absence of errors, whether or not known or discoverable. Where 261 | disclaimers of warranties are not allowed in full or in part, this disclaimer 262 | may not apply to You. 263 | 264 | b. To the extent possible, in no event will the Licensor be liable to You on any 265 | legal theory (including, without limitation, negligence) or otherwise for any 266 | direct, special, indirect, incidental, consequential, punitive, exemplary, or 267 | other losses, costs, expenses, or damages arising out of this Public License or 268 | use of the Licensed Material, even if the Licensor has been advised of the 269 | possibility of such losses, costs, expenses, or damages. Where a limitation of 270 | liability is not allowed in full or in part, this limitation may not apply to 271 | You. 272 | 273 | c. The disclaimer of warranties and limitation of liability provided above shall 274 | be interpreted in a manner that, to the extent possible, most closely 275 | approximates an absolute disclaimer and waiver of all liability. 276 | 277 | Section 6 – Term and Termination. 278 | 279 | a. This Public License applies for the term of the Copyright and Similar Rights 280 | licensed here. However, if You fail to comply with this Public License, then 281 | Your rights under this Public License terminate automatically. 282 | 283 | b. Where Your right to use the Licensed Material has terminated under Section 284 | 6(a), it reinstates: 285 | 286 | 1. automatically as of the date the violation is cured, provided it is cured 287 | within 30 days of Your discovery of the violation; or 288 | 289 | 2. upon express reinstatement by the Licensor. 290 | 291 | c. For the avoidance of doubt, this Section 6(b) does not affect any right the 292 | Licensor may have to seek remedies for Your violations of this Public License. 293 | 294 | d. For the avoidance of doubt, the Licensor may also offer the Licensed Material 295 | under separate terms or conditions or stop distributing the Licensed Material at 296 | any time; however, doing so will not terminate this Public License. 297 | 298 | e. Sections 1, 5, 6, 7, and 8 survive termination of this Public License. 299 | 300 | Section 7 – Other Terms and Conditions. 301 | 302 | a. The Licensor shall not be bound by any additional or different terms or 303 | conditions communicated by You unless expressly agreed. 304 | 305 | b. Any arrangements, understandings, or agreements regarding the Licensed 306 | Material not stated herein are separate from and independent of the terms and 307 | conditions of this Public License. 308 | 309 | Section 8 – Interpretation. 310 | 311 | a. For the avoidance of doubt, this Public License does not, and shall not be 312 | interpreted to, reduce, limit, restrict, or impose conditions on any use of the 313 | Licensed Material that could lawfully be made without permission under this 314 | Public License. 315 | 316 | b. To the extent possible, if any provision of this Public License is deemed 317 | unenforceable, it shall be automatically reformed to the minimum extent 318 | necessary to make it enforceable. If the provision cannot be reformed, it shall 319 | be severed from this Public License without affecting the enforceability of the 320 | remaining terms and conditions. 321 | 322 | c. No term or condition of this Public License will be waived and no failure to 323 | comply consented to unless expressly agreed to by the Licensor. 324 | 325 | d. Nothing in this Public License constitutes or may be interpreted as a 326 | limitation upon, or waiver of, any privileges and immunities that apply to the 327 | Licensor or You, including from the legal processes of any jurisdiction or 328 | authority. 329 | 330 | Creative Commons is not a party to its public licenses. Notwithstanding, 331 | Creative Commons may elect to apply one of its public licenses to material it 332 | publishes and in those instances will be considered the “Licensor.” Except for 333 | the limited purpose of indicating that material is shared under a Creative 334 | Commons public license or as otherwise permitted by the Creative Commons 335 | policies published at creativecommons.org/policies, Creative Commons does not 336 | authorize the use of the trademark “Creative Commons” or any other trademark or 337 | logo of Creative Commons without its prior written consent including, without 338 | limitation, in connection with any unauthorized modifications to any of its 339 | public licenses or any other arrangements, understandings, or agreements 340 | concerning use of licensed material. For the avoidance of doubt, this paragraph 341 | does not form part of the public licenses. Creative Commons may be contacted at 342 | creativecommons.org. 343 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | github-community-dark-logo 3 |
4 | 5 | Version 6 | 7 | 8 | Stars 9 | 10 | 11 | Forks 12 | 13 | 14 | devDependencies 15 | 16 | 17 | Gitter 18 | 19 |

20 | 21 | ## Preview 22 | ![](./images/screenshots/after_blue.png) 23 | 24 | ## Installation 25 | 26 | A userstyle extension is required, common ones include: 27 | 28 | 🎨 Stylus for [Firefox](https://addons.mozilla.org/en-US/firefox/addon/styl-us/), [Chrome](https://chrome.google.com/webstore/detail/stylus/clngdbkpkpeebahjckkjfobafhncgmne) or [Opera](https://addons.opera.com/en-gb/extensions/details/stylus/).
29 | 🎨 xStyle for [Firefox](https://addons.mozilla.org/firefox/addon/xstyle/) or [Chrome](https://chrome.google.com/webstore/detail/xstyle/hncgkmhphmncjohllpoleelnibpmccpj). 30 | 31 | Then: 32 | 33 | 📦 [Install the usercss](https://github.com/StylishThemes/GitHub-Community-Dark/raw/master/github-community-dark.user.css) with Stylus. Supports automatic updates. 34 | 35 | ## Available Syntax Highlighting Themes ([Demo](https://stylishthemes.github.io/GitHub-Dark/)) 36 | 37 | | Theme | GitHub | 38 | |----------------------------|:------:| 39 | | Ambiance | ✔️ | 40 | | Chaos | ✔️ | 41 | | Clouds Midnight | ✔️ | 42 | | Cobalt | ✔️ | 43 | | GitHub Dark | ✔️ | 44 | | Idle Fingers | ✔️ | 45 | | Kr Theme | ✔️ | 46 | | Merbivore | ✔️ | 47 | | Merbivore Soft | ✔️ | 48 | | Mono Industrial | ✔️ | 49 | | Mono Industrial Clear | ✔️ | 50 | | Monokai | ✔️ | 51 | | Monokai Spacegray Eighties | ✔️ | 52 | | Obsidian | ✔️ | 53 | | One Dark | ✔️ | 54 | | Pastel on Dark | ✔️ | 55 | | Solarized Dark | ✔️ | 56 | | Terminal | ✔️ | 57 | | Tomorrow Night | ✔️ | 58 | | Tomorrow Night Blue | ✔️ | 59 | | Tomorrow Night Bright | ✔️ | 60 | | Tomorrow Night Eighties | ✔️ | 61 | | Twilight (**default**) | ✔️ | 62 | | Vibrant Ink | ✔️ | 63 | 64 | - Please provide a pull request if you have or want to create a missing theme. 65 | 66 | ## Contributions 67 | 68 | If you would like to contribute to this repository, please... 69 | 70 | 1. 👓 Read the [contribution guidelines](./.github/CONTRIBUTING.md). 71 | 1. ![repo-forked](https://user-images.githubusercontent.com/136959/42383736-c4cb0db8-80fd-11e8-91ca-12bae108bccc.png) [Fork](https://github.com/StylishThemes/GitHub-Community-Dark/fork) or ![cloud-download](https://user-images.githubusercontent.com/136959/42401932-9ee9cae0-813d-11e8-8691-16e29a85d3b9.png) [download](https://github.com/StylishThemes/GitHub-Community-Dark/archive/master.zip) this repository. 72 | 1. 👌 Create a pull request! 73 | 74 | Thanks to all that have [contributed](AUTHORS) so far! 75 | -------------------------------------------------------------------------------- /defaults.json: -------------------------------------------------------------------------------- 1 | { 2 | "preprocessor": "uso", 3 | "variables": { 4 | "Base color scheme": { 5 | "type": "color", 6 | "label": "base-color", 7 | "value": "#4183C4" 8 | }, 9 | "Background image [wrap in url()]": { 10 | "type": "text", 11 | "label": "bg-choice", 12 | "value": "url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEYAAABGCAAAAABURb1YAAAFnklEQVR4AWWXCY4cwXbE6h4JMhCvMPc/ov+3Ox9QsLCGpKlFHILd+UQ559AGDkBSFXWmomonqkL/XuUcIPUcONjHCJyE36KaqNiaRnVCG9TGpgIU9hIfohCBVGj24ammo04lU3Fy0NZDAyZi5AElHjgEGlRbG1WjraIt7TmADQkAaoEHsOXAAaeqat9RVTqjosyEH5W+DQCQt8BzIJMfXJI3e5tGRefSlRn3NrO3scnvNl26FN5RITGNfjm3GM/+FhQgnlQeImC+dEm8rzHVTNGL9EADVsTAIfGJBziRy7RlmcZU1IYpHIj+4JrWym8/XSwzompmFNVOFdTOAAfs61KZ6eXcp57fykQUOxNBmTesz2HpCnCg3UV/bA7VRpWGNqKtrYLTs0ilCjgxiZxjeLC5dDPBFn4Pn2ja6BRUL10DTgET4Focq8rn8casxV4E5tIlZvytqtfivCOKZrqc38G7egnkXecyPZdzubc57VtUnbfL+a0u3b1N3d9Mci7cKocHoh3xihLQ6fXUlgTOOfVkXSUFINoWHhqxE23RTmCqtoEJaITkIrUCkU9fnqpqm+40VSXS3CLaSzfGBb4rPuOSfN0ylLve6/jpcrbL2dTlnOdv5AamKjLvLN1XruMNS/cul/hx8twKpKYRaE2DOp8+c+lW7uVXVQ7Vx0x1G3HXjNocsHCac7NbWc6egwJVHu2kRTVNC2pqv2U4XNsv5/yWJlV9+NJ1C7xluInlcr7rK+Kg+qy7onQqgnbi7UHcS3qXjdw3bO5tumycYlVssMI5EXXpRnatPK362KodtVU60cm+eQT10sVLFwJYlVaf7UGSoi5dQF3DvnTX3UvXTPO8quKH7jsXhm/PxfKWZXqBM5sS33kmKtC31Q05fI095i5IPpyzRXqSy1Sr17p1F7NE8vMtnNbLpVVtk8c0OrfF0sKxHnIpYgHW4puMomTz8mgmrSjpvrxhX97l7LqLpl7bW9BH9/MNzF8XwRqL8/m7c30eFYV5VX3QTquK06XbLt16F4ks+8Z9m6gPtpcuk3OvibCekng4lzMHi9MoqZmKj9tdbQCbc7bcEA+oEJduRNNL1waf1tuI9MDBUK8t3k9uFz3rrqadO9Ln9TL/ezlwDvky3TW7ZmXfpc77TN0yhOXnP939LvVDV9s+tgLTm0TqYd1lea3PRFuVjLa562HdPbCfascGrvO3DMeIATVqVRO8vfHrbupdfo1dzlXUdkVLZsS1mLPG3rWcl+4B1l1537h0VXzU1tyLG7cCu+LSrSqo06hocy3WCcil65qHDbuEYzQN2HpT3jFt9LEFvHTP1nxbXOEkbhkKmd+6BTfVZ/I143z/Fyz6Za92o0I7I6gzfeYAHPwy/Rb43L9TLtMt8CtwW1xvQvbR1g9n7qJRNN1kdxcdH7cM58Szxq679MdLOhE72t6VNEpHHkzwRyjBcGth+dE99pIkVbWaEWmvnQ8Yl7Mp59zpRWXdNo6odrO754Zzvxf/010nP7onb1TR+bgbVPB9PcADJvH/043Kvk0UzLRxQ6UiaeTAcyxYl2lyrrvZv8v2wE7U1uVcST0821jJeIDKWuyxiqnuko7q3+zJYXJ46nV3D67EyL+lQ9F2qkr+3kUafQpwYE8T329p6y7OX1TF97fQv/c+l87zj7Hsgpig4qRLd9fMPs74rLGyCzRbhmVqpy7nqvPmTD1gvKe7b2U8u1QzmtuDuEtbgT3c8QBJveo6cueFkUwv59nVmfFw1jl4/unuOT9qERV76ers8n23z/c8/Xy7a4lwwLplmGusbRp33Up13+ZDN3KPxNVMhY62vUQyRTse6+cKHtZYjIfDh260Cjbb3Vy6R8H8SMBzqSwrsB1UTacoknlnOb8V4JD9Njfpwz/fHjpBUeevcAtcl65sqXPX9D87RUTLc/dfOgAAAABJRU5ErkJggg==)" 13 | }, 14 | "Background image type": { 15 | "type": "dropdown", 16 | "label": "bg-options", 17 | "value": { 18 | "Tiled": "background-repeat: repeat !important;\n background-size: auto !important;\n background-position: left top !important;", 19 | "Fit window size": "background-repeat: no-repeat !important;\n background-size: cover !important;\n background-position: center top !important;" 20 | } 21 | }, 22 | "Background image attachment": { 23 | "type": "dropdown", 24 | "label": "bg-attachment", 25 | "value": { 26 | "Scroll": "scroll", 27 | "Fixed": "fixed" 28 | } 29 | }, 30 | "Github syntax theme": { 31 | "type": "dropdown", 32 | "label": "syntax-theme", 33 | "value": { 34 | "Twilight": "/*! GitHub: Twilight *\\/.CodeMirror, .highlight{background:#141414!important;color:#ccc!important}.blob-code, .blob-code-inner{color:#ccc!important}.pl-c, .pl-c span{color:#5f5a60!important;font-style:italic!important}.pl-c1{color:#cf6a4c!important}.pl-cce{color:#cf6a4c!important;font-weight:400!important}.pl-cn{color:#cf6a4c!important}.pl-coc{color:#cf6a4c!important}.pl-cos{color:#8f9d6a!important}.pl-e{color:#ac885b!important}.pl-ef{color:#ac885b!important}.pl-en{color:#ac885b!important}.pl-enc{color:#cf6a4c!important}.pl-enf{color:#ac885b!important}.pl-enm{color:#ac885b!important}.pl-ens{color:#cf6a4c!important}.pl-ent{color:#cda869!important}.pl-entc{color:#ac885b!important}.pl-enti{color:#ac885b!important;font-weight:700!important}.pl-entm{color:#7587a6!important}.pl-eoa{color:#cda869!important}.pl-eoac{color:#7587a6!important}.pl-eoac .pl-pde{color:#7587a6!important}.pl-eoai{color:#cda869!important}.pl-eoai .pl-pde{color:#cda869!important}.pl-eoi{color:#ac885b!important}.pl-k{color:#cda869!important}.pl-ko{color:#cda869!important}.pl-kolp{color:#cda869!important}.pl-kos{color:#cf6a4c!important}.pl-kou{color:#cf6a4c!important}.pl-mai .pl-sf{color:#7587a6!important}.pl-mb{color:#8f9d6a!important;font-weight:700!important}.pl-mc{color:#cda869!important}.pl-mh{color:#cf6a4c!important;font-weight:400!important}.pl-mh .pl-pdh{color:#cf6a4c!important}.pl-mi{color:#cda869!important;font-style:italic!important}.pl-ml{color:#8f9d6a!important}.pl-mm{color:#7587a6!important}.pl-mp{color:#c5af75!important}.pl-mp1 .pl-sf{color:#dad085!important}.pl-mq{color:#cf6a4c!important}.pl-mr{color:#cda869!important}.pl-ms{color:#cda869!important}.pl-pdb{color:#8f9d6a!important;font-weight:700!important}.pl-pdc{color:#5f5a60!important;font-style:italic!important}.pl-pdc1{color:#cf6a4c!important}.pl-pde{color:#cf6a4c!important}.pl-pdi{color:#cda869!important;font-style:italic!important}.pl-pds{color:#8f9d6a!important}.pl-pdv{color:#7587a6!important}.pl-pse{color:#cf6a4c!important}.pl-pse .pl-s2{color:#cf6a4c!important}.pl-s{color:#f9ee98!important}.pl-s1{color:#8f9d6a!important}.pl-s2{color:#ccc!important}.pl-mp .pl-s3{color:#cda869!important}.pl-s3{color:#dad085!important}.pl-sc{color:#dad085!important}.pl-scp{color:#cf6a4c!important}.pl-sf{color:#dad085!important}.pl-smc{color:#ac885b!important}.pl-smi{color:#ccc!important}.pl-smp{color:#ccc!important}.pl-sok{color:#cda869!important}.pl-sol{color:#8f9d6a!important}.pl-som{color:#7587a6!important}.pl-sr{color:#7587a6!important}.pl-sra{color:#cda869!important}.pl-src{color:#cda869!important}.pl-sre{color:#cda869!important}.pl-st{color:#cda869!important}.pl-stj{color:#7587a6!important}.pl-stp{color:#9b859d!important}.pl-sv{color:#9b859d!important}.pl-v{color:#9b859d!important}.pl-vi{color:#cf6a4c!important}.pl-vo{color:#ac885b!important}.pl-vpf{color:#7587a6!important}.pl-mi1{color:#55a532!important;background:#020!important}.pl-mdht{color:#55a532!important;background:#020!important}.pl-md{color:#bd2c00!important;background:#200!important}.pl-mdhf{color:#bd2c00!important;background:#200!important}.pl-mdr{color:#cf6a4c!important;font-weight:400!important}.pl-mdh{color:#7587a6!important;font-weight:400!important}.pl-mdi{color:#7587a6!important;font-weight:400!important}.pl-ib{background-color:#f93!important}.pl-id{background-color:#a31515!important;color:#fff!important}.pl-ii, .pl-ii .pl-cce{background-color:#df5000!important;color:#fff!important}.pl-iu{background-color:#b4b7b4!important}.pl-mo{color:#969896!important}.pl-mri{color:teal!important}.pl-ms1{background-color:#f5f5f5!important}.pl-va{color:teal!important}.pl-vpu{color:teal!important}.pl-entl{color:#ccc!important}\r\n", 35 | "Ambiance": "/*! GitHub: Ambiance *\\/.CodeMirror, .highlight{background-color:#202020!important;color:#e6e1dc!important}.blob-code, .blob-code-inner{color:#e6e1dc!important}.pl-c, .pl-c span{color:#555!important;font-style:italic!important}.pl-c1{color:#cf7ea9!important}.pl-e{color:#aac6e3!important}.pl-en{color:#fa8d6a!important}.pl-ent{color:#aac6e3!important}.pl-k{color:#fa8d6a!important}.pl-mb{color:#cf7ea9!important;font-weight:700!important}.pl-mdh{color:#cda869!important}.pl-mdr{color:#cda869!important}.pl-mh{color:#9b859d!important}.pl-mh .pl-en{color:#9b859d!important;font-weight:700!important}.pl-mi{color:#cda869!important;font-style:italic!important}.pl-ml{color:#cda869!important}.pl-mm{color:#cda869!important}.pl-mo{color:#cda869!important}.pl-mp{color:#cda869!important}.pl-mq{color:#555!important}.pl-mr{color:#cda869!important}.pl-ms{color:#cda869!important}.pl-pds{color:#8f9d6a!important}.pl-s{color:#aac6e3!important}.pl-s1{color:#8f9d6a!important}.pl-s1 .pl-pse .pl-s2{color:#8f9d6a!important}.pl-s1 .pl-s2{color:#99c!important}.pl-s1 .pl-v{color:#cda869!important}.pl-s3{color:#cda869!important}.pl-sc{color:#9b859d!important}.pl-smi{color:#99c!important}.pl-smp{color:#99c!important}.pl-sr{color:#dad085!important}.pl-sr .pl-cce{color:#9b859d!important}.pl-sr .pl-sra{color:#dad085!important}.pl-sr .pl-sre{color:#dad085!important}.pl-src{color:#dad085!important}.pl-st{color:#aac6e3!important}.pl-stj{color:#99c!important}.pl-sv{color:#cf7ea9!important}.pl-v{color:#aac6e3!important}.pl-vo{color:#99c!important}.pl-vpf{color:#99c!important}.pl-mi1{color:#f8f8f8!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#f8f8f8!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#f8f8f8!important;background:rgba(86,45,86,.75)!important}.pl-mdhf{color:#f8f8f8!important;background:rgba(86,45,86,.75)!important}.pl-id{color:#f8f8f8!important;background:rgba(86,45,86,.75)!important}.pl-ii{color:#f8f8f8!important;background:rgba(86,45,86,.75)!important}\r\n", 36 | "Chaos": "/*! GitHub: Chaos *\\/.CodeMirror, .highlight{background-color:#161616!important;color:#e6e1dc!important}.blob-code, .blob-code-inner{color:#e6e1dc!important}.pl-c, .pl-c span{color:#555!important;font-style:italic!important}.pl-c1{color:#fdc251!important}.pl-e{color:#974!important}.pl-en{color:#974!important}.pl-ent{color:#974!important}.pl-k{color:#00698f!important}.pl-mb{color:#1edafb!important;font-weight:700!important}.pl-mdh{color:#00698f!important}.pl-mdr{color:#00698f!important}.pl-mh{color:#fdc251!important}.pl-mh .pl-en{color:#fdc251!important;font-weight:700!important}.pl-mi{color:#00698f!important;font-style:italic!important}.pl-ml{color:#00698f!important}.pl-mm{color:#00698f!important}.pl-mo{color:#00698f!important}.pl-mp{color:#00698f!important}.pl-mq{color:#555!important}.pl-mr{color:#00698f!important}.pl-ms{color:#00698f!important}.pl-pds{color:#58c554!important}.pl-s{color:#974!important}.pl-s1{color:#58c554!important}.pl-s1 .pl-pse .pl-s2{color:#58c554!important}.pl-s1 .pl-s2{color:#1edafb!important}.pl-s1 .pl-v{color:#00698f!important}.pl-s3{color:#00698f!important}.pl-sc{color:#999!important}.pl-smi{color:#be53e6!important}.pl-smp{color:#be53e6!important}.pl-sr{color:#ff308f!important}.pl-sr .pl-cce{color:#fdc251!important}.pl-sr .pl-sra{color:#ff308f!important}.pl-sr .pl-sre{color:#ff308f!important}.pl-src{color:#ff308f!important}.pl-st{color:#e6e1dc!important}.pl-stj{color:#be53e6!important}.pl-sv{color:#1edafb!important}.pl-v{color:#974!important}.pl-vo{color:#be53e6!important}.pl-vpf{color:#974!important}.pl-mi1{color:#fff!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#fff!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#fff!important;background:#900!important}.pl-mdhf{color:#fff!important;background:#900!important}.pl-id{color:#fff!important;background:#900!important}.pl-ii{color:#fff!important;background:#900!important}\r\n", 37 | "Clouds_Midnight": "/*! GitHub: Clouds_Midnight *\\/.CodeMirror, .highlight{background-color:#191919!important;color:#929292!important}.blob-code, .blob-code-inner{color:#929292!important}.pl-c, .pl-c span{color:#3c403b!important;font-style:italic!important}.pl-c1{color:#39946a!important}.pl-e{color:#929292!important}.pl-en{color:#929292!important}.pl-ent{color:#929292!important}.pl-k{color:#927c5d!important}.pl-mb{color:#39946a!important;font-weight:700!important}.pl-mdh{color:#927c5d!important}.pl-mdr{color:#927c5d!important}.pl-mh{color:#366f1a!important}.pl-mh .pl-en{color:#366f1a!important;font-weight:700!important}.pl-mi{color:#927c5d!important;font-style:italic!important}.pl-ml{color:#927c5d!important}.pl-mm{color:#927c5d!important}.pl-mo{color:#927c5d!important}.pl-mp{color:#927c5d!important}.pl-mq{color:#3c403b!important}.pl-mr{color:#927c5d!important}.pl-ms{color:#927c5d!important}.pl-pds{color:#5d90cd!important}.pl-s{color:#e92e2e!important}.pl-s1{color:#5d90cd!important}.pl-s1 .pl-pse .pl-s2{color:#5d90cd!important}.pl-s1 .pl-s2{color:#606060!important}.pl-s1 .pl-v{color:#927c5d!important}.pl-s3{color:#927c5d!important}.pl-sc{color:#366f1a!important}.pl-smi{color:#606060!important}.pl-smp{color:#606060!important}.pl-sr{color:#e92e2e!important}.pl-sr .pl-cce{color:#366f1a!important}.pl-sr .pl-sra{color:#e92e2e!important}.pl-sr .pl-sre{color:#e92e2e!important}.pl-src{color:#e92e2e!important}.pl-st{color:#e92e2e!important}.pl-stj{color:#606060!important}.pl-sv{color:#39946a!important}.pl-v{color:#5d90cd!important}.pl-vo{color:#606060!important}.pl-vpf{color:#606060!important}.pl-mi1{color:#fff!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#fff!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#fff!important;background:#e92e2e!important}.pl-mdhf{color:#fff!important;background:#e92e2e!important}.pl-id{color:#fff!important;background:#e92e2e!important}.pl-ii{color:#fff!important;background:#e92e2e!important}\r\n", 38 | "Cobalt": "/*! GitHub: Cobalt *\\/.CodeMirror, .highlight{background-color:#002240!important;color:#fff!important}.blob-code, .blob-code-inner{color:#fff!important}.pl-c, .pl-c span{color:#08f!important;font-style:italic!important}.pl-c1{color:#ff628c!important}.pl-e{color:#ff9d00!important}.pl-en{color:#fff!important}.pl-ent{color:#fd0!important}.pl-k{color:#ff9d00!important}.pl-mb{color:#ff628c!important;font-weight:700!important}.pl-mdh{color:#ff9d00!important}.pl-mdr{color:#ff9d00!important}.pl-mh{color:#eb939a!important}.pl-mh .pl-en{color:#eb939a!important;font-weight:700!important}.pl-mi{color:#ff9d00!important;font-style:italic!important}.pl-ml{color:#ff9d00!important}.pl-mm{color:#ff9d00!important}.pl-mo{color:#ff9d00!important}.pl-mp{color:#ff9d00!important}.pl-mq{color:#08f!important}.pl-mr{color:#ff9d00!important}.pl-ms{color:#ff9d00!important}.pl-pds{color:#3ad900!important}.pl-s{color:#3ad900!important}.pl-s1{color:#3ad900!important}.pl-s1 .pl-pse .pl-s2{color:#3ad900!important}.pl-s1 .pl-s2{color:#ccc!important}.pl-s1 .pl-v{color:#3ad900!important}.pl-s3{color:#ffb054!important}.pl-sc{color:#ffb054!important}.pl-smi{color:#ccc!important}.pl-smp{color:#ccc!important}.pl-sr{color:#80ffc2!important}.pl-sr .pl-cce{color:#eb939a!important}.pl-sr .pl-sra{color:#80ffc2!important}.pl-sr .pl-sre{color:#80ffc2!important}.pl-src{color:#80ffc2!important}.pl-st{color:#ff9d00!important}.pl-stj{color:#ccc!important}.pl-sv{color:#ff628c!important}.pl-v{color:#fd0!important}.pl-vo{color:#ccc!important}.pl-vpf{color:#ccc!important}.pl-mi1{color:#f8f8f8!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#f8f8f8!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#f8f8f8!important;background:#800f00!important}.pl-mdhf{color:#f8f8f8!important;background:#800f00!important}.pl-id{color:#f8f8f8!important;background:#800f00!important}.pl-ii{color:#f8f8f8!important;background:#800f00!important}.highlight-source-js .pl-st{color:#ffee80!important}.highlight-source-css .pl-s3{color:#80ffbb!important}.highlight-text-html-basic .pl-ent{color:#9effff!important}\r\n", 39 | "GitHub Dark": "/*! GitHub: GitHub Dark *\\/.CodeMirror, .highlight{background:#141414!important;color:#ccc!important}.blob-code, .blob-code-inner{color:#ccc!important}.pl-c{color:#969896}.pl-c1, .pl-s .pl-v{color:#0099cd}.pl-e, .pl-en{color:#9774cb}.pl-s .pl-s1, .pl-smi{color:#ddd}.pl-ent{color:#7bcc72}.pl-k{color:#cc2372}.pl-pds, .pl-s, .pl-s .pl-pse .pl-s1, .pl-sr, .pl-sr .pl-cce, .pl-sr .pl-sra, .pl-sr .pl-sre{color:#3c66e2}.pl-smw, .pl-v{color:#fb8764}.pl-bu{color:#e63525}.pl-ii{color:#f8f8f8;background-color:#e63525}.pl-sr .pl-cce{font-weight:700;color:#7bcc72}.pl-ml{color:#c26b2b}.pl-mh, .pl-mh .pl-en, .pl-ms{font-weight:700;color:#4c66e2}.pl-mq{color:#00acac}.pl-mi{font-style:italic;color:#ddd}.pl-mb{font-weight:700;color:#ddd}.pl-md{color:#bd2c00;background-color:#ffecec}.pl-mi1{color:#55a532;background-color:#eaffea}.pl-mc{color:#ef9700;background-color:#ffe3b4}.pl-mi2{color:#d8d8d8;background-color:grey}.pl-mdr{font-weight:700;color:#9774cb}.pl-mo{color:#264ec5}.pl-ba{color:#e1e1e1}.pl-sg{color:#6e7880}.pl-corl{text-decoration:underline;color:#3c66e2}\r\n", 40 | "Idle Fingers": "/*! GitHub: Idle Fingers *\\/.CodeMirror, .highlight{background-color:#323232!important;color:#fff!important}.blob-code, .blob-code-inner{color:#fff!important}.pl-c, .pl-c span{color:#bc9458!important;font-style:italic!important}.pl-c1{color:#6c99bb!important}.pl-cce{color:#cc7833!important}.pl-cn{color:#cc7833!important}.pl-coc{color:#cc7833!important}.pl-cos{color:#a5c261!important}.pl-e{color:#ffc66d!important}.pl-ef{color:#b83426!important}.pl-en{color:#ffc66d!important}.pl-enc{color:#cc7833!important}.pl-enf{color:#b83426!important}.pl-enm{color:#b83426!important}.pl-ens{color:#cc7833!important}.pl-ent{color:#ffe5bb!important}.pl-entc{color:#b83426!important}.pl-enti{color:#b83426!important;font-weight:700!important}.pl-entm{color:#b83426!important}.pl-eoa{color:#ffe5bb!important}.pl-eoac{color:#b83426!important}.pl-eoac .pl-pde{color:#b83426!important}.pl-eoai{color:#ffe5bb!important}.pl-eoai .pl-pde{color:#ffe5bb!important}.pl-eoi{color:#b83426!important}.pl-k{color:#cc7833!important}.pl-ko{color:#ffe5bb!important}.pl-kolp{color:#ffe5bb!important}.pl-kos{color:#cc7833!important}.pl-kou{color:#cc7833!important}.pl-mai .pl-sf{color:#b83426!important}.pl-mb{color:#a5c261!important;font-weight:700!important}.pl-mc{color:#ffe5bb!important}.pl-mh .pl-pdh{color:#cc7833!important}.pl-mi{color:#ffe5bb!important;font-style:italic!important}.pl-ml{color:#a5c261!important}.pl-mm{color:#b83426!important}.pl-mp{color:#cc7833!important}.pl-mp1 .pl-sf{color:#cc7833!important}.pl-mq{color:#cc7833!important}.pl-mr{color:#ffe5bb!important}.pl-ms{color:#ffe5bb!important}.pl-pdb{color:#a5c261!important;font-weight:700!important}.pl-pdc{color:#bc9458!important;font-style:italic!important}.pl-pdc1{color:#6c99bb!important}.pl-pde{color:#cc7833!important}.pl-pdi{color:#ffe5bb!important;font-style:italic!important}.pl-pds{color:#a5c261!important}.pl-pdv{color:#b83426!important}.pl-pse{color:#cc7833!important}.pl-pse .pl-s2{color:#cc7833!important}.pl-s{color:#cc7833!important}.pl-s1{color:#a5c261!important}.pl-s2{color:#fff!important}.pl-mp .pl-s3{color:#cc7833!important}.pl-s3{color:#ffe5bb!important}.pl-sc{color:#ffc66d!important}.pl-scp{color:#6c99bb!important}.pl-sf{color:#ffc66d!important}.pl-smc{color:#b83426!important}.pl-smi{color:#ffc66d!important}.pl-smp{color:#ffc66d!important}.pl-sok{color:#ffe5bb!important}.pl-sol{color:#a5c261!important}.pl-som{color:#b83426!important}.pl-sr{color:#b83426!important}.pl-sra{color:#cc3!important}.pl-src{color:#cc3!important}.pl-sre{color:#cc3!important}.pl-st{color:#cc7833!important}.pl-stj{color:#fff!important}.pl-stp{color:#cc7833!important}.pl-sv{color:#cc7833!important}.pl-v{color:#cc7833!important}.pl-vi{color:#cc7833!important}.pl-vo{color:#fff!important}.pl-vpf{color:#cc7833!important}.pl-mi1{color:#a5c261!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#a5c261!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#b83426!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#b83426!important;background:rgba(64,0,0,.5)!important}.pl-mdr{color:#cc7833!important;font-weight:400!important}.pl-mdh{color:#ffc66d!important;font-weight:400!important}.pl-mdi{color:#ffc66d!important;font-weight:400!important}.pl-ib{background-color:#b83426!important}.pl-id{background-color:#b83426!important;color:#fff!important}.pl-ii{background-color:#b83426!important;color:#fff!important}.pl-iu{background-color:#b83426!important}.pl-mo{color:#ffc66d!important}.pl-mri{color:#cc7833!important}.pl-ms1{background-color:#ffc66d!important}.pl-va{color:#cc7833!important}.pl-vpu{color:#cc7833!important}.pl-entl{color:#ffc66d!important}.highlight-text-html-basic .pl-ent{color:#cc7833!important}\r\n", 41 | "KR theme": "/*! GitHub: KR theme *\\/.CodeMirror, .highlight{background-color:#0b0a09!important;color:#fcffe0!important}.blob-code, .blob-code-inner{color:#fcffe0!important}.pl-c, .pl-c span{color:#706d5b!important;font-style:italic!important}.pl-c1{color:rgba(210,117,24,.76)!important}.pl-e{color:#fcffe0!important}.pl-en{color:#fcffe0!important}.pl-ent{color:#babd9c!important}.pl-k{color:#949c8b!important}.pl-mb{color:rgba(210,117,24,.76)!important;font-weight:700!important}.pl-mdh{color:#949c8b!important}.pl-mdr{color:#949c8b!important}.pl-mh{color:#9fc28a!important}.pl-mh .pl-en{color:#9fc28a!important;font-weight:700!important}.pl-mi{color:#949c8b!important;font-style:italic!important}.pl-ml{color:#949c8b!important}.pl-mm{color:#949c8b!important}.pl-mo{color:#949c8b!important}.pl-mp{color:#949c8b!important}.pl-mq{color:#706d5b!important}.pl-mr{color:#949c8b!important}.pl-ms{color:#949c8b!important}.pl-pds{color:rgba(164,161,181,.8)!important}.pl-s{color:#949c8b!important}.pl-s1{color:rgba(164,161,181,.8)!important}.pl-s1 .pl-pse .pl-s2{color:rgba(164,161,181,.8)!important}.pl-s1 .pl-s2{color:#babd9c!important}.pl-s1 .pl-v{color:#949c8b!important}.pl-s3{color:#85873a!important}.pl-sc{color:#fcffe0!important}.pl-smi{color:#babd9c!important}.pl-smp{color:#babd9c!important}.pl-sr{color:rgba(125,255,192,.65)!important}.pl-sr .pl-cce{color:#9fc28a!important}.pl-sr .pl-sra{color:rgba(125,255,192,.65)!important}.pl-sr .pl-sre{color:rgba(125,255,192,.65)!important}.pl-src{color:rgba(125,255,192,.65)!important}.pl-st{color:#949c8b!important}.pl-stj{color:#babd9c!important}.pl-sv{color:rgba(210,117,24,.76)!important}.pl-v{color:#fcffe0!important}.pl-vo{color:#d1a796!important}.pl-vpf{color:#d1a796!important}.pl-mi1{color:#f8f8f8!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#f8f8f8!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#f8f8f8!important;background:#a41300!important}.pl-mdhf{color:#f8f8f8!important;background:#a41300!important}.pl-id{color:#f8f8f8!important;background:#a41300!important}.pl-ii{color:#f8f8f8!important;background:#a41300!important}.highlight-source-js .pl-s3{color:#ff80e1!important}.highlight-source-js .pl-v{color:#ff80e1!important}.highlight-source-js .pl-st{color:#ffee80!important}\r\n", 42 | "Merbivore Soft": "/*! GitHub: Merbivore Soft *\\/.CodeMirror, .highlight{background-color:#1c1c1c!important;color:#e6e1dc!important}.blob-code, .blob-code-inner{color:#e6e1dc!important}.pl-c, .pl-c span{color:#ad2ea4!important;font-style:italic!important}.pl-c1{color:#b3e5b4!important}.pl-e{color:#e1c582!important}.pl-en{color:#fc6f09!important}.pl-ent{color:#fc6f09!important;font-style:italic!important}.pl-k{color:#fc6f09!important}.pl-mb{color:#8ec65f!important;font-weight:700!important}.pl-mdh{color:#fc6f09!important}.pl-mdr{color:#fc6f09!important}.pl-mh{color:#8ec65f!important}.pl-mh .pl-en{color:#8ec65f!important;font-weight:700!important}.pl-mi{color:#fc6f09!important;font-style:italic!important}.pl-ml{color:#fc6f09!important}.pl-mm{color:#fc6f09!important}.pl-mo{color:#fc6f09!important}.pl-mp{color:#fc6f09!important}.pl-mq{color:#ad2ea4!important}.pl-mr{color:#fc6f09!important}.pl-ms{color:#fc6f09!important}.pl-pds{color:#8ec65f!important}.pl-s{color:#fc6f09!important}.pl-s1{color:#8ec65f!important}.pl-s1 .pl-pse .pl-s2{color:#8ec65f!important}.pl-s1 .pl-s2{color:#fc6f09!important}.pl-s1 .pl-v{color:#fc6f09!important}.pl-s3{color:#e6e1dc!important}.pl-sc{color:#68c1d8!important}.pl-smi{color:#fc6f09!important}.pl-smp{color:#fc6f09!important}.pl-sr{color:#fc6f09!important}.pl-sr .pl-cce{color:#b3e5b4!important}.pl-sr .pl-sra{color:#e1c582!important}.pl-sr .pl-sre{color:#e1c582!important}.pl-src{color:#e1c582!important}.pl-st{color:#fc6f09!important}.pl-stj{color:#fc6f09!important}.pl-sv{color:#8ec65f!important}.pl-v{color:#fc6f09!important}.pl-vo{color:#e6e1dc!important}.pl-vpf{color:#e6e1dc!important}.pl-mi1{color:#e6e1dc!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#e6e1dc!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#e6e1dc!important;background:#fe3838!important}.pl-mdhf{color:#e6e1dc!important;background:#fe3838!important}.pl-id{color:#e6e1dc!important;background:#fe3838!important}.pl-ii{color:#e6e1dc!important;background:#fe3838!important}.highlight-source-css .pl-e{color:#e6e1dc!important}.highlight-source-js .pl-c1{color:#e1c582!important}.highlight-source-js .pl-sc{color:#e6e1dc!important}.highlight-text-html-php .pl-s3{color:#fc6f09!important}.highlight-source-css .pl-s3{color:#68c1d8!important}.highlight-source-python .pl-c1{color:#e1c582!important}\r\n", 43 | "Merbivore": "/*! GitHub: Merbivore *\\/.CodeMirror, .highlight{background-color:#161616!important;color:#e6e1dc!important}.blob-code, .blob-code-inner{color:#e6e1dc!important}.pl-c, .pl-c span{color:#ad2ea4!important;font-style:italic!important}.pl-c1{color:#519f50!important}.pl-e{color:#fdc251!important}.pl-en{color:#fc6f09!important}.pl-ent{color:#fc6f09!important}.pl-k{color:#fc6f09!important}.pl-mb{color:#8dff0a!important;font-weight:700!important}.pl-mdh{color:#fc6f09!important}.pl-mdr{color:#fc6f09!important}.pl-mh{color:#8dff0a!important}.pl-mh .pl-en{color:#8dff0a!important;font-weight:700!important}.pl-mi{color:#fc6f09!important;font-style:italic!important}.pl-ml{color:#fc6f09!important}.pl-mm{color:#fc6f09!important}.pl-mo{color:#fc6f09!important}.pl-mp{color:#fc6f09!important}.pl-mq{color:#ad2ea4!important}.pl-mr{color:#fc6f09!important}.pl-ms{color:#fc6f09!important}.pl-pds{color:#8dff0a!important}.pl-s{color:#fc6f09!important}.pl-s1{color:#8dff0a!important}.pl-s1 .pl-pse .pl-s2{color:#8dff0a!important}.pl-s1 .pl-s2{color:#fc6f09!important}.pl-s1 .pl-v{color:#fc6f09!important}.pl-s3{color:#e6e1dc!important}.pl-sc{color:#1edafb!important}.pl-smi{color:#fc6f09!important}.pl-smp{color:#fc6f09!important}.pl-sr{color:#fc6f09!important}.pl-sr .pl-cce{color:#519f50!important}.pl-sr .pl-sra{color:#fdc251!important}.pl-sr .pl-sre{color:#fdc251!important}.pl-src{color:#fdc251!important}.pl-st{color:#fc6f09!important}.pl-stj{color:#fc6f09!important}.pl-sv{color:#8dff0a!important}.pl-v{color:#fc6f09!important}.pl-vo{color:#e6e1dc!important}.pl-vpf{color:#e6e1dc!important}.pl-mi1{color:#e6e1dc!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#e6e1dc!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#e6e1dc!important;background:#900!important}.pl-mdhf{color:#e6e1dc!important;background:#900!important}.pl-id{color:#e6e1dc!important;background:#900!important}.pl-ii{color:#e6e1dc!important;background:#900!important}.highlight-source-css .pl-e{color:#e6e1dc!important}.highlight-source-js .pl-c1{color:#fdc251!important}.highlight-source-js .pl-sc{color:#e6e1dc!important}.highlight-text-html-php .pl-s3{color:#fc6f09!important}.highlight-source-css .pl-s3{color:#1edafb!important}.highlight-source-python .pl-c1{color:#fdc251!important}\r\n", 44 | "Mono Industrial clear": "/*! GitHub: Mono Industrial clear *\\/.CodeMirror, .highlight{background-color:#222c28!important;color:#fff!important}.blob-code, .blob-code-inner{color:#fff!important}.pl-c, .pl-c span{color:#666c68!important;background-color:#304830!important}.pl-c1{color:#e98800!important}.pl-e{color:#a8b3ab!important}.pl-en{color:#fff!important}.pl-ent{color:#a39e64!important}.pl-k{color:#a39e64!important}.pl-mb{color:#e98800!important;font-weight:700!important}.pl-mdh{color:#a39e64!important}.pl-mdr{color:#a39e64!important}.pl-mh{color:#5778b6!important}.pl-mh .pl-en{color:#5778b6!important;font-weight:700!important}.pl-mi{color:#a39e64!important;font-style:italic!important}.pl-ml{color:#a39e64!important}.pl-mm{color:#a39e64!important}.pl-mo{color:#a39e64!important}.pl-mp{color:#a39e64!important}.pl-mq{color:#666c68!important}.pl-mr{color:#a39e64!important}.pl-ms{color:#a39e64!important}.pl-pds{color:#fff!important}.pl-s{color:#c23b00!important}.pl-s1{color:#fff!important;background-color:#151c19!important}.pl-s1 .pl-pse .pl-s2{color:#fff!important;background-color:#151c19!important}.pl-s1 .pl-s2{color:#c23b00!important}.pl-s1 .pl-v{color:#a39e64!important}.pl-s3{color:#5778b6!important}.pl-sc{color:#fff!important}.pl-smi{color:#c23b00!important}.pl-smp{color:#c23b00!important}.pl-sr{color:#fff!important;background-color:#151c19!important}.pl-sr .pl-cce{color:#5778b6!important}.pl-sr .pl-sra{color:#c23b00!important}.pl-sr .pl-sre{color:#c23b00!important}.pl-src{color:#c23b00!important}.pl-st{color:#c23b00!important}.pl-stj{color:#c23b00!important}.pl-sv{color:#e98800!important}.pl-v{color:#5778b6!important}.pl-vo{color:#a8b3ab!important}.pl-vpf{color:#5778b6!important}.pl-mi1{color:#fff!important;background:rgba(0,150,0,.68)!important}.pl-mdht{color:#fff!important;background:rgba(0,153,0,.68)!important}.pl-md{color:#fff!important;background:rgba(196,0,0,.68)!important}.pl-mdhf{color:#fff!important;background:rgba(153,0,0,.68)!important}.pl-id{color:#fff!important;background:rgba(153,0,0,.68)!important}.pl-ii{color:#fff!important;background:rgba(153,0,0,.68)!important}.highlight-source-css .pl-ent{color:#e98800!important}.highlight-text-html-php .pl-s{color:#a39e64!important}.highlight-text-html-php .pl-st{color:#a39e64!important}.highlight-text-html-php .pl-s3{color:#588e60!important}.highlight-source-python .pl-st{color:#a39e64!important}\r\n", 45 | "Mono Industrial": "/*! GitHub: Mono Industrial *\\/.CodeMirror, .highlight{background-color:#222c28!important;color:#fff!important}.blob-code, .blob-code-inner{color:#fff!important}.pl-c, .pl-c span{color:#666c68!important;background-color:#151c19!important}.pl-c1{color:#e98800!important}.pl-e{color:#a8b3ab!important}.pl-en{color:#fff!important}.pl-ent{color:#a39e64!important}.pl-k{color:#a39e64!important}.pl-mb{color:#e98800!important;font-weight:700!important}.pl-mdh{color:#a39e64!important}.pl-mdr{color:#a39e64!important}.pl-mh{color:#5778b6!important}.pl-mh .pl-en{color:#5778b6!important;font-weight:700!important}.pl-mi{color:#a39e64!important;font-style:italic!important}.pl-ml{color:#a39e64!important}.pl-mm{color:#a39e64!important}.pl-mo{color:#a39e64!important}.pl-mp{color:#a39e64!important}.pl-mq{color:#666c68!important}.pl-mr{color:#a39e64!important}.pl-ms{color:#a39e64!important}.pl-pds{color:#fff!important}.pl-s{color:#c23b00!important}.pl-s1{color:#fff!important;background-color:#151c19!important}.pl-s1 .pl-pse .pl-s2{color:#fff!important;background-color:#151c19!important}.pl-s1 .pl-s2{color:#c23b00!important}.pl-s1 .pl-v{color:#a39e64!important}.pl-s3{color:#5778b6!important}.pl-sc{color:#fff!important}.pl-smi{color:#c23b00!important}.pl-smp{color:#c23b00!important}.pl-sr{color:#fff!important;background-color:#151c19!important}.pl-sr .pl-cce{color:#5778b6!important}.pl-sr .pl-sra{color:#c23b00!important}.pl-sr .pl-sre{color:#c23b00!important}.pl-src{color:#c23b00!important}.pl-st{color:#c23b00!important}.pl-stj{color:#c23b00!important}.pl-sv{color:#e98800!important}.pl-v{color:#5778b6!important}.pl-vo{color:#a8b3ab!important}.pl-vpf{color:#5778b6!important}.pl-mi1{color:#fff!important;background:rgba(0,153,0,.68)!important}.pl-mdht{color:#fff!important;background:rgba(0,153,0,.68)!important}.pl-md{color:#fff!important;background:rgba(153,0,0,.68)!important}.pl-mdhf{color:#fff!important;background:rgba(153,0,0,.68)!important}.pl-id{color:#fff!important;background:rgba(153,0,0,.68)!important}.pl-ii{color:#fff!important;background:rgba(153,0,0,.68)!important}.highlight-source-css .pl-ent{color:#e98800!important}.highlight-text-html-php .pl-s{color:#a39e64!important}.highlight-text-html-php .pl-st{color:#a39e64!important}.highlight-text-html-php .pl-s3{color:#588e60!important}.highlight-source-python .pl-st{color:#a39e64!important}\r\n", 46 | "Monokai - Spacegray Eighties": "/*! GitHub: Monokai - Spacegray Eighties *\\/.CodeMirror, .highlight{background-color:#1c1c1c!important;color:#f8f8f8!important}.blob-code, .blob-code-inner{color:#f8f8f8!important}.pl-c, .pl-c span{color:grey!important}.pl-c1{color:#66d9ef!important}.pl-cce{color:#66d9ef!important}.pl-cn{color:#ae81ff!important}.pl-coc{color:#ae81ff!important}.pl-cos{color:#e6db74!important}.pl-e{color:#f92672!important}.pl-ef{color:#a6e22e!important}.pl-en{color:#a6e22e!important}.pl-enc{color:#66d9ef!important}.pl-enf{color:#a6e22e!important}.pl-enm{color:#a6e22e!important}.pl-ens{color:#66d9ef!important}.pl-ent{color:#f92672!important}.pl-entc{color:#a6e22e!important}.pl-enti{color:#a6e22e!important;font-weight:700!important}.pl-entm{color:#a6e22e!important}.pl-eoa{color:#f92672!important}.pl-eoac{color:#a6e22e!important}.pl-eoac .pl-pde{color:#a6e22e!important}.pl-eoai{color:#f92672!important}.pl-eoai .pl-pde{color:#f92672!important}.pl-eoi{color:#a6e22e!important}.pl-k{color:#f92672!important}.pl-ko{color:#f92672!important}.pl-kolp{color:#f92672!important}.pl-kos{color:#66d9ef!important}.pl-kou{color:#66d9ef!important}.pl-mai .pl-sf{color:#a6e22e!important}.pl-mb{color:#e6db74!important;font-weight:700!important}.pl-mc{color:#f92672!important}.pl-mh .pl-pdh{color:#66d9ef!important}.pl-mi{color:#f92672!important;font-style:italic!important}.pl-ml{color:#e6db74!important}.pl-mm{color:#a6e22e!important}.pl-mp{color:#66d9ef!important}.pl-mp1 .pl-sf{color:#66d9ef!important}.pl-mq{color:#66d9ef!important}.pl-mr{color:#f92672!important}.pl-ms{color:#f92672!important}.pl-pdb{color:#e6db74!important;font-weight:700!important}.pl-pdc{color:#75715e!important;font-style:italic!important}.pl-pdc1{color:#ae81ff!important}.pl-pde{color:#66d9ef!important}.pl-pdi{color:#f92672!important;font-style:italic!important}.pl-pds{color:#f8f8f8!important}.pl-pdv{color:#a6e22e!important}.pl-pse{color:#66d9ef!important}.pl-pse .pl-s2{color:#66d9ef!important}.pl-s{color:#e6db74!important}.pl-s1{color:#e6db74!important}.pl-s2{color:#f8f8f8!important}.pl-mp .pl-s3{color:#66d9ef!important}.pl-s3{color:#f92672!important}.pl-sc{color:#fd971f!important}.pl-scp{color:#ae81ff!important}.pl-sf{color:#fd971f!important}.pl-smc{color:#f92672!important}.pl-smi{color:#fd971f!important}.pl-smp{color:#f92672!important}.pl-sok{color:#f92672!important}.pl-sol{color:#e6db74!important}.pl-som{color:#a6e22e!important}.pl-sr{color:#a6e22e!important}.pl-sra{color:#f92672!important}.pl-src{color:#f92672!important}.pl-sre{color:#f92672!important}.pl-st{color:#66d9ef!important}.pl-stj{color:#f8f8f8!important}.pl-stp{color:#f92672!important}.pl-sv{color:#f92672!important}.pl-v{color:#f92672!important}.pl-vi{color:#f92672!important}.pl-vo{color:#a6e22e!important}.pl-vpf{color:#f92672!important}.pl-mi1{color:#a6e22e!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#a6e22e!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#f92672!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#f92672!important;background:rgba(64,0,0,.5)!important}.pl-mdr{color:#66d9ef!important;font-weight:400!important}.pl-mdh{color:#a6e22e!important;font-weight:400!important}.pl-mdi{color:#a6e22e!important;font-weight:400!important}.pl-ib{background-color:#a6e22e!important;color:#272822!important}.pl-id{background-color:#a6e22e!important;color:#272822!important}.pl-ii, .pl-ii .pl-cce{background-color:#a6e22e!important;color:#272822!important}.pl-iu{background-color:#a6e22e!important;color:#272822!important}.pl-mo{color:#fd971f!important}.pl-mri{color:#66d9ef!important}.pl-ms1{background-color:#fd971f!important}.pl-va{color:#66d9ef!important}.pl-vpu{color:#66d9ef!important}.pl-entl{color:#fd971f!important}\r\n", 47 | "Monokai": "/*! GitHub: Monokai *\\/.CodeMirror, .highlight{background-color:#272822!important;color:#f8f8f2!important}.blob-code, .blob-code-inner{color:#f8f8f2!important}.pl-c, .pl-c span{color:#75715e!important;font-style:italic!important}.pl-c1{color:#ae81ff!important}.pl-cce{color:#66d9ef!important}.pl-cn{color:#66d9ef!important}.pl-coc{color:#66d9ef!important}.pl-cos{color:#e6db74!important}.pl-e{color:#a6e22e!important}.pl-ef{color:#a6e22e!important}.pl-en{color:#a6e22e!important}.pl-enc{color:#66d9ef!important}.pl-enf{color:#a6e22e!important}.pl-enm{color:#a6e22e!important}.pl-ens{color:#66d9ef!important}.pl-ent{color:#f92672!important}.pl-entc{color:#a6e22e!important}.pl-enti{color:#a6e22e!important;font-weight:700!important}.pl-entm{color:#a6e22e!important}.pl-eoa{color:#f92672!important}.pl-eoac{color:#a6e22e!important}.pl-eoac .pl-pde{color:#a6e22e!important}.pl-eoai{color:#f92672!important}.pl-eoai .pl-pde{color:#f92672!important}.pl-eoi{color:#a6e22e!important}.pl-k{color:#f92672!important}.pl-ko{color:#f92672!important}.pl-kolp{color:#f92672!important}.pl-kos{color:#66d9ef!important}.pl-kou{color:#66d9ef!important}.pl-mai .pl-sf{color:#a6e22e!important}.pl-mb{color:#e6db74!important;font-weight:700!important}.pl-mc{color:#f92672!important}.pl-mh .pl-pdh{color:#66d9ef!important}.pl-mi{color:#f92672!important;font-style:italic!important}.pl-ml{color:#e6db74!important}.pl-mm{color:#a6e22e!important}.pl-mp{color:#66d9ef!important}.pl-mp1 .pl-sf{color:#66d9ef!important}.pl-mq{color:#66d9ef!important}.pl-mr{color:#f92672!important}.pl-ms{color:#f92672!important}.pl-pdb{color:#e6db74!important;font-weight:700!important}.pl-pdc{color:#75715e!important;font-style:italic!important}.pl-pdc1{color:#ae81ff!important}.pl-pde{color:#66d9ef!important}.pl-pdi{color:#f92672!important;font-style:italic!important}.pl-pds{color:#e6db74!important}.pl-pdv{color:#a6e22e!important}.pl-pse{color:#66d9ef!important}.pl-pse .pl-s2{color:#66d9ef!important}.pl-s{color:#e6db74!important}.pl-s1{color:#e6db74!important}.pl-s2{color:#f8f8f2!important}.pl-mp .pl-s3{color:#66d9ef!important}.pl-s3{color:#f92672!important}.pl-sc{color:#fd971f!important}.pl-scp{color:#ae81ff!important}.pl-sf{color:#fd971f!important}.pl-smc{color:#f92672!important}.pl-smi{color:#66d9ef!important}.pl-smp{color:#f92672!important}.pl-sok{color:#f92672!important}.pl-sol{color:#e6db74!important}.pl-som{color:#a6e22e!important}.pl-sr{color:#a6e22e!important}.pl-sra{color:#f92672!important}.pl-src{color:#f92672!important}.pl-sre{color:#f92672!important}.pl-st{color:#66d9ef!important}.pl-stj{color:#f8f8f2!important}.pl-stp{color:#66d9ef!important}.pl-sv{color:#66d9ef!important}.pl-v{color:#66d9ef!important}.pl-vi{color:#66d9ef!important}.pl-vo{color:#a6e22e!important}.pl-vpf{color:#66d9ef!important}.pl-mi1{color:#a6e22e!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#a6e22e!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#f92672!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#f92672!important;background:rgba(64,0,0,.5)!important}.pl-mdr{color:#66d9ef!important;font-weight:400!important}.pl-mdh{color:#a6e22e!important;font-weight:400!important}.pl-mdi{color:#a6e22e!important;font-weight:400!important}.pl-ib{background-color:#a6e22e!important;color:#272822!important}.pl-id{background-color:#a6e22e!important;color:#272822!important}.pl-ii, .pl-ii .pl-cce{background-color:#a6e22e!important;color:#272822!important}.pl-iu{background-color:#a6e22e!important;color:#272822!important}.pl-mo{color:#fd971f!important}.pl-mri{color:#66d9ef!important}.pl-ms1{background-color:#fd971f!important}.pl-va{color:#66d9ef!important}.pl-vpu{color:#66d9ef!important}.pl-entl{color:#fd971f!important}\r\n", 48 | "Obsidian": "/*! GitHub: Obsidian *\\/.CodeMirror, .highlight{background:#293134!important;color:#e0e2e4!important}.blob-code, .blob-code-inner{color:#e0e2e4!important}.pl-c, .pl-c span{color:#66747b!important;font-style:italic!important}.pl-c1{color:#ffcd22!important}.pl-e{color:#93c763!important}.pl-en{color:#678cb1!important}.pl-ent{color:#e0e2e4!important}.pl-k{color:#93c763!important}.pl-mb{color:#ec7600!important;font-weight:700!important}.pl-mdh{color:#93c763!important}.pl-mdr{color:#93c763!important}.pl-mh{color:#66747b!important}.pl-mh .pl-en{color:#66747b!important;font-weight:700!important}.pl-mi{color:#93c763!important;font-style:italic!important}.pl-ml{color:#93c763!important}.pl-mm{color:#93c763!important}.pl-mo{color:#93c763!important}.pl-mp{color:#93c763!important}.pl-mq{color:#66747b!important}.pl-mr{color:#93c763!important}.pl-ms{color:#93c763!important}.pl-pds{color:#ec7600!important}.pl-s{color:#ec7600!important}.pl-s1{color:#e0e2e4!important}.pl-s1 .pl-pse .pl-s2{color:#ec7600!important}.pl-s1 .pl-s2{color:#e0e2e4!important}.pl-s1 .pl-v{color:#93c763!important}.pl-s3{color:#93c763!important}.pl-sc{color:#96989a!important}.pl-smi{color:#e0e2e4!important}.pl-smp{color:#e0e2e4!important}.pl-sr{color:#d39745!important}.pl-sr .pl-cce{color:#ffcd22!important}.pl-sr .pl-sra{color:#d39745!important}.pl-sr .pl-sre{color:#d39745!important}.pl-src{color:#d39745!important}.pl-st{color:#da4236!important}.pl-stj{color:#e0e2e4!important}.pl-sv{color:#ec7600!important}.pl-v{color:#678cb1!important}.pl-vo{color:#e0e2e4!important}.pl-vpf{color:#e0e2e4!important}.pl-mi1{color:#e0e2e4!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#e0e2e4!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#e0e2e4!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#e0e2e4!important;background:rgba(64,0,0,.5)!important}.pl-id{color:#e0e2e4!important;background:rgba(64,0,0,.5)!important}.pl-ii{color:#e0e2e4!important;background:rgba(64,0,0,.5)!important}.pl-c1>.pl-c1{color:#678cb1!important}\r\n", 49 | "One Dark": "/*! GitHub: One Dark *\\/.CodeMirror, .highlight{background:#141414!important;color:#aab1bf!important}.blob-code, .blob-code-inner{color:#aab1bf!important}.pl-c, .pl-c span{color:#5b6270!important;font-style:italic!important}.pl-c1{color:#d19965!important}.pl-sr .pl-cce{color:#56b5c2!important;font-weight:400!important}.pl-cn{color:#d19965!important}.pl-e{color:#d19965!important}.pl-ef{color:#61afef!important}.pl-en{color:#61afef!important}.pl-enc{color:#e4bf7a!important}.pl-enf{color:#61afef!important}.pl-enm{color:#aab1bf!important}.pl-ens{color:#be5046!important}.pl-ent{color:#df6b75!important}.pl-entc{color:#e4bf7a!important}.pl-enti{color:#56b5c2!important}.pl-entm{color:#df6b75!important}.pl-eoa{color:#d19965!important}.pl-eoac{color:#d19965!important}.pl-eoac .pl-pde{color:#d19965!important}.pl-eoai{color:#61afef!important}.pl-eoi{color:#97c279!important}.pl-k{color:#c578dd!important}.pl-ko{color:#aab1bf!important}.pl-kolp{color:#c578dd!important}.pl-kos{color:#61afef!important}.pl-kou{color:#d19965!important}.pl-mai .pl-sf{color:#56b5c2!important}.pl-mb{color:#d19965!important;font-weight:700!important}.pl-mc{color:#c578dd!important}.pl-mh{color:#df6b75!important}.pl-mh .pl-pdh{color:#61afef!important}.pl-mi{color:#c578dd!important;font-style:italic!important}.pl-ml{color:#56b5c2!important}.pl-mm{color:#d19965!important}.pl-mp{color:#818896!important}.pl-mp1 .pl-sf{color:#aab1bf!important}.pl-mq{color:#d19965!important}.pl-mr{color:#61afef!important}.pl-ms{color:#aab1bf!important}.pl-pdb{color:#e4bf7a!important;font-weight:700!important}.pl-pdc{color:#5b6270!important;font-style:italic!important}.pl-pdc1{color:#aab1bf!important}.pl-pde{color:#c578dd!important}.pl-pdi{color:#c578dd!important;font-style:italic!important}.pl-pds{color:#97c279!important}.pl-pdv{color:#df6b75!important}.pl-pse .pl-s1{color:#97c279!important}.pl-pse .pl-s2{color:#e4bf7a!important}.pl-s{color:#97c279!important}.pl-s1{color:#97c279!important}.pl-s2{color:#e4bf7a!important}.pl-mp .pl-s3{color:#d19965!important}.pl-s3{color:#d19965!important}.pl-sc{color:#e4bf7a!important}.pl-scp{color:#aab1bf!important}.pl-sf{color:#56b5c2!important}.pl-smc{color:#aab1bf!important}.pl-smi{color:#df6b75!important}.pl-smp{color:#e4bf7a!important}.pl-sok{color:#d19965!important}.pl-sol{color:#df6b75!important}.pl-som{color:#aab1bf!important}.pl-sr{color:#56b5c2!important}.pl-sr .pl-sra{color:#56b5c2!important}.pl-src{color:#56b5c2!important}.pl-sr .pl-sre{color:#e4bf7a!important}.pl-st{color:#56b5c2!important}.pl-stj{color:#e4bf7a!important}.pl-stp{color:#818896!important}.pl-sv{color:#d19965!important}.pl-v{color:#e4bf7a!important}.pl-vi{color:#be5046!important}.pl-vo{color:#56b5c2!important}.pl-vpf{color:#aab1bf!important}.pl-mi1{color:#97c279!important;background:#020!important}.pl-mdht{color:#97c279!important;background:#020!important}.pl-md{color:#df6b75!important;background:#200!important}.pl-mdhf{color:#df6b75!important;background:#200!important}.pl-mdr{color:#aab1bf!important;font-weight:400!important}.pl-mdh{color:#df6b75!important;font-weight:400!important}.pl-mdi{color:#df6b75!important;font-weight:400!important}.pl-corl{color:#df6b75!important;text-decoration:underline!important}.pl-ib{background-color:#df6b75!important}.pl-id{background-color:#513d14!important;color:#e0c184!important}.pl-ii{background-color:#e0c184!important;color:#fff!important}.pl-iu{background-color:#e05151!important}.pl-mo{color:#aab1bf!important}.pl-mri{color:#97c279!important}.pl-ms1{color:#aab1bf!important;background-color:#373b41!important}.pl-va{color:#aab1bf!important}.pl-vpu{color:#aab1bf!important}.pl-entl{color:#df6b75!important}\r\n", 50 | "Pastel on Dark": "/*! GitHub: Pastel on Dark *\\/.CodeMirror, .highlight{background-color:#2c2828!important;color:#e6e1dc!important}.blob-code, .blob-code-inner{color:#e6e1dc!important}.pl-c, .pl-c span{color:#a6c6ff!important;font-style:italic!important}.pl-c1{color:#a5c261!important}.pl-cce{color:#afa472!important}.pl-cn{color:#ccc!important}.pl-coc{color:#757ad8!important}.pl-cos{color:#66a968!important}.pl-e{color:#e6e1dc!important}.pl-ef{color:#aeb2f8!important}.pl-en{color:#757ad8!important}.pl-enc{color:#757ad8!important}.pl-enf{color:#aeb2f8!important}.pl-enm{color:#aeb2f8!important}.pl-ens{color:#757ad8!important}.pl-ent{color:#6782d3!important}.pl-entc{color:#aeb2f8!important}.pl-enti{color:#aeb2f8!important;font-weight:700!important}.pl-entm{color:#aeb2f8!important}.pl-eoa{color:#e6e1dc!important}.pl-eoac{color:#aeb2f8!important}.pl-eoac .pl-pde{color:#aeb2f8!important}.pl-eoai{color:#e6e1dc!important}.pl-eoai .pl-pde{color:#e6e1dc!important}.pl-eoi{color:#aeb2f8!important}.pl-k{color:#757ad8!important}.pl-ko{color:#e6e1dc!important}.pl-kolp{color:#e6e1dc!important}.pl-kos{color:#757ad8!important}.pl-kou{color:#757ad8!important}.pl-mai .pl-sf{color:#aeb2f8!important}.pl-mb{color:#66a968!important;font-weight:700!important}.pl-mc{color:#e6e1dc!important}.pl-mh .pl-pdh{color:#757ad8!important}.pl-mi{color:#e6e1dc!important;font-style:italic!important}.pl-ml{color:#66a968!important}.pl-mm{color:#aeb2f8!important}.pl-mp{color:#757ad8!important}.pl-mp1 .pl-sf{color:#757ad8!important}.pl-mq{color:#757ad8!important}.pl-mr{color:#e6e1dc!important}.pl-ms{color:#e6e1dc!important}.pl-pdb{color:#66a968!important;font-weight:700!important}.pl-pdc{color:#a6c6ff!important;font-style:italic!important}.pl-pdc1{color:#4fb7c5!important}.pl-pde{color:#757ad8!important}.pl-pdi{color:#e6e1dc!important;font-style:italic!important}.pl-pds{color:#ad9361!important}.pl-pdv{color:#aeb2f8!important}.pl-pse{color:#757ad8!important}.pl-pse .pl-s2{color:#757ad8!important}.pl-s{color:#757ad8!important}.pl-s1{color:#ad9361!important}.pl-s2{color:#8f938f!important}.pl-mp .pl-s3{color:#757ad8!important}.pl-s3{color:#e6e1dc!important}.pl-sc{color:#757ad8!important}.pl-scp{color:#4fb7c5!important}.pl-sf{color:#bebf55!important}.pl-smc{color:#aeb2f8!important}.pl-smi{color:#bebf55!important}.pl-smp{color:#bebf55!important}.pl-sok{color:#e6e1dc!important}.pl-sol{color:#66a968!important}.pl-som{color:#aeb2f8!important}.pl-sr{color:#aeb2f8!important}.pl-sra{color:#797878!important}.pl-src{color:#e9c062!important}.pl-sre{color:#e9c062!important}.pl-st{color:#a5c261!important}.pl-stj{color:#8f938f!important}.pl-stp{color:#757ad8!important}.pl-sv{color:#757ad8!important}.pl-v{color:#757ad8!important}.pl-vi{color:#757ad8!important}.pl-vo{color:#a5c261!important}.pl-vpf{color:#757ad8!important}.pl-mi1{color:#66a968!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#66a968!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#aeb2f8!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#aeb2f8!important;background:rgba(64,0,0,.5)!important}.pl-mdr{color:#757ad8!important;font-weight:400!important}.pl-mdh{color:#bebf55!important;font-weight:400!important}.pl-mdi{color:#bebf55!important;font-weight:400!important}.pl-ib{background-color:#aeb2f8!important}.pl-id{background-color:#aeb2f8!important;color:#fff!important}.pl-ii, .pl-ii .pl-cce{background-color:#aeb2f8!important;color:#fff!important}.pl-iu{background-color:#aeb2f8!important}.pl-mo{color:#bebf55!important}.pl-mri{color:#757ad8!important}.pl-ms1{background-color:#bebf55!important}.pl-va{color:#757ad8!important}.pl-vpu{color:#757ad8!important}.pl-entl{color:#bebf55!important}.highlight-source-css .pl-v{color:#ad9361!important}.highlight-text-html-basic .pl-e{color:#6782d3!important}.highlight-text-tex .pl-s3{color:#757ad8!important}\r\n", 51 | "Solarized Dark": "/*! GitHub: Solarized Dark *\\/.CodeMirror, .highlight{background:#002b36!important;color:#839496!important}.blob-code, .blob-code-inner{color:#839496!important}.pl-c, .pl-c span{color:#586e75!important;font-style:italic!important}.pl-c1{color:#2aa198!important}.pl-e{color:#268bd2!important}.pl-en{color:#268bd2!important}.pl-ent{color:#268bd2!important}.pl-k{color:#859900!important}.pl-mb{color:#2aa198!important;font-weight:700!important}.pl-mdh{color:#859900!important}.pl-mdr{color:#859900!important}.pl-mh{color:#cb4b16!important}.pl-mh .pl-en{color:#cb4b16!important;font-weight:700!important}.pl-mi{color:#859900!important;font-style:italic!important}.pl-ml{color:#859900!important}.pl-mm{color:#859900!important}.pl-mo{color:#859900!important}.pl-mp{color:#859900!important}.pl-mq{color:#586e75!important}.pl-mr{color:#859900!important}.pl-ms{color:#859900!important}.pl-pds{color:#2aa198!important}.pl-s{color:#268bd2!important}.pl-s1{color:#2aa198!important}.pl-s1 .pl-pse .pl-s2{color:#2aa198!important}.pl-s1 .pl-s2{color:#839496!important}.pl-s1 .pl-v{color:#859900!important}.pl-s3{color:#859900!important}.pl-sc{color:#cb4b16!important}.pl-smi{color:#839496!important}.pl-smp{color:#839496!important}.pl-sr{color:#d30102!important}.pl-sr .pl-cce{color:#cb4b16!important}.pl-sr .pl-sra{color:#d30102!important}.pl-sr .pl-sre{color:#d30102!important}.pl-src{color:#d30102!important}.pl-st{color:#dc322f!important}.pl-stj{color:#839496!important}.pl-sv{color:#2aa198!important}.pl-v{color:#268bd2!important}.pl-vo{color:#839496!important}.pl-vpf{color:#839496!important}.pl-mi1{color:#839496!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#839496!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#839496!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#839496!important;background:rgba(64,0,0,.5)!important}.pl-id{color:#839496!important;background:rgba(64,0,0,.5)!important}.pl-ii{color:#839496!important;background:rgba(64,0,0,.5)!important}.highlight-source-css .pl-k{color:#586e75!important}.highlight-source-c\\+\\+ .pl-s{color:#dc322f!important}\r\n", 52 | "Terminal": "/*! GitHub: Terminal *\\/.CodeMirror, .highlight{background-color:#000!important;color:#dedede!important}.blob-code, .blob-code-inner{color:#dedede!important}.pl-c, .pl-c span{color:#ff4500!important;font-style:italic!important}.pl-c1{color:#e78c45!important}.pl-e{color:#d54e53!important}.pl-en{color:#dedede!important}.pl-ent{color:tomato!important}.pl-k{color:tomato!important}.pl-mb{color:#e78c45!important;font-weight:700!important}.pl-mdh{color:tomato!important}.pl-mdr{color:tomato!important}.pl-mh{color:#b9ca4a!important}.pl-mh .pl-en{color:#b9ca4a!important;font-weight:700!important}.pl-mi{color:tomato!important;font-style:italic!important}.pl-ml{color:tomato!important}.pl-mm{color:tomato!important}.pl-mo{color:tomato!important}.pl-mp{color:tomato!important}.pl-mq{color:#ff4500!important}.pl-mr{color:tomato!important}.pl-ms{color:tomato!important}.pl-pds{color:#b9ca4a!important}.pl-s{color:tomato!important}.pl-s1{color:#b9ca4a!important}.pl-s1 .pl-pse .pl-s2{color:#e78c45!important}.pl-s1 .pl-s2{color:#7aa6da!important}.pl-s1 .pl-v{color:tomato!important}.pl-s3{color:#d54e53!important}.pl-sc{color:#dedede!important}.pl-smi{color:#7aa6da!important}.pl-smp{color:#7aa6da!important}.pl-sr{color:#d54e53!important}.pl-sr .pl-cce{color:#b9ca4a!important}.pl-sr .pl-sra{color:#d54e53!important}.pl-sr .pl-sre{color:#d54e53!important}.pl-src{color:#d54e53!important}.pl-st{color:tomato!important}.pl-stj{color:#7aa6da!important}.pl-sv{color:#e78c45!important}.pl-v{color:#d54e53!important}.pl-vo{color:#7aa6da!important}.pl-vpf{color:#e78c45!important}.pl-mi1{color:#dedede!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#dedede!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#dedede!important;background:red!important}.pl-mdhf{color:#dedede!important;background:red!important}.pl-id{color:#ced2cf!important;background:#b798bf!important}.pl-ii{color:#ff0!important;background:red!important}.highlight-source-css .pl-k{color:#dedede!important}.highlight-source-css .pl-s3{color:#e7c547!important}.highlight-source-css .pl-sc{color:#e7c547!important}.highlight-source-css .pl-ent{color:#dedede!important}.highlight-text-html-basic .pl-ent{color:#d54e53!important}.highlight-source-js .pl-k{color:#ff1493!important}.highlight-text-html-php .pl-s3{color:#7aa6da!important}.highlight-text-html-php .pl-vo{color:#d54e53!important}.highlight-source-python .pl-s3{color:#7aa6da!important}\r\n", 53 | "Tomorrow Night Blue": "/*! GitHub: Tomorrow Night Blue *\\/.CodeMirror, .highlight{background-color:#002451!important;color:#fff!important}.blob-code, .blob-code-inner{color:#fff!important}.pl-c, .pl-c span{color:#969896!important;font-style:italic!important}.pl-c1{color:#de935f!important}.pl-cce{color:#de935f!important}.pl-cn{color:#de935f!important}.pl-coc{color:#de935f!important}.pl-cos{color:#b5bd68!important}.pl-e{color:#f0c674!important}.pl-ef{color:#f0c674!important}.pl-en{color:#f0c674!important}.pl-enc{color:#de935f!important}.pl-enf{color:#f0c674!important}.pl-enm{color:#f0c674!important}.pl-ens{color:#de935f!important}.pl-ent{color:#b294bb!important}.pl-entc{color:#f0c674!important}.pl-enti{color:#f0c674!important;font-weight:700!important}.pl-entm{color:#c66!important}.pl-eoa{color:#b294bb!important}.pl-eoac{color:#c66!important}.pl-eoac .pl-pde{color:#c66!important}.pl-eoai{color:#b294bb!important}.pl-eoai .pl-pde{color:#b294bb!important}.pl-eoi{color:#f0c674!important}.pl-k{color:#b294bb!important}.pl-ko{color:#b294bb!important}.pl-kolp{color:#b294bb!important}.pl-kos{color:#de935f!important}.pl-kou{color:#de935f!important}.pl-mai .pl-sf{color:#c66!important}.pl-mb{color:#b5bd68!important;font-weight:700!important}.pl-mc{color:#b294bb!important}.pl-mh .pl-pdh{color:#de935f!important}.pl-mi{color:#b294bb!important;font-style:italic!important}.pl-ml{color:#b5bd68!important}.pl-mm{color:#c66!important}.pl-mp{color:#81a2be!important}.pl-mp1 .pl-sf{color:#81a2be!important}.pl-mq{color:#de935f!important}.pl-mr{color:#b294bb!important}.pl-ms{color:#b294bb!important}.pl-pdb{color:#b5bd68!important;font-weight:700!important}.pl-pdc{color:#969896!important;font-style:italic!important}.pl-pdc1{color:#de935f!important}.pl-pde{color:#de935f!important}.pl-pdi{color:#b294bb!important;font-style:italic!important}.pl-pds{color:#b5bd68!important}.pl-pdv{color:#c66!important}.pl-pse{color:#de935f!important}.pl-pse .pl-s2{color:#de935f!important}.pl-s{color:#b294bb!important}.pl-s1{color:#b5bd68!important}.pl-s2{color:#c5c8c6!important}.pl-mp .pl-s3{color:#b294bb!important}.pl-s3{color:#81a2be!important}.pl-sc{color:#c5c8c6!important}.pl-scp{color:#de935f!important}.pl-sf{color:#dad085!important}.pl-smc{color:#f0c674!important}.pl-smi{color:#c5c8c6!important}.pl-smp{color:#c5c8c6!important}.pl-sok{color:#b294bb!important}.pl-sol{color:#b5bd68!important}.pl-som{color:#c66!important}.pl-sr{color:#c66!important}.pl-sra{color:#b294bb!important}.pl-src{color:#b294bb!important}.pl-sre{color:#b294bb!important}.pl-st{color:#b294bb!important}.pl-stj{color:#c5c8c6!important}.pl-stp{color:#de935f!important}.pl-sv{color:#de935f!important}.pl-v{color:#de935f!important}.pl-vi{color:#de935f!important}.pl-vo{color:#c66!important}.pl-vpf{color:#de935f!important}.pl-mi1{color:#8f9d6a!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#8f9d6a!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#c66!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#c66!important;background:rgba(64,0,0,.5)!important}.pl-mdr{color:#de935f!important;font-weight:400!important}.pl-mdh{color:#c66!important;font-weight:400!important}.pl-mdi{color:#c66!important;font-weight:400!important}.pl-ib{background-color:#c66!important}.pl-id{background-color:#c66!important;color:#fff!important}.pl-ii, .pl-ii .pl-cce{background-color:#c66!important;color:#fff!important}.pl-iu{background-color:#c66!important}.pl-mo{color:#c5c8c6!important}.pl-mri{color:#de935f!important}.pl-ms1{background-color:#c5c8c6!important}.pl-va{color:#de935f!important}.pl-vpu{color:#de935f!important}.pl-entl{color:#c5c8c6!important}\r\n", 54 | "Tomorrow Night Bright": "/*! GitHub: Tomorrow Night Bright *\\/.CodeMirror, .highlight{background-color:#000!important;color:#dedede!important}.blob-code, .blob-code-inner{color:#dedede!important}.pl-c, .pl-c span{color:#969896!important;font-style:italic!important}.pl-c1{color:#de935f!important}.pl-cce{color:#de935f!important}.pl-cn{color:#de935f!important}.pl-coc{color:#de935f!important}.pl-cos{color:#b5bd68!important}.pl-e{color:#f0c674!important}.pl-ef{color:#f0c674!important}.pl-en{color:#f0c674!important}.pl-enc{color:#de935f!important}.pl-enf{color:#f0c674!important}.pl-enm{color:#f0c674!important}.pl-ens{color:#de935f!important}.pl-ent{color:#b294bb!important}.pl-entc{color:#f0c674!important}.pl-enti{color:#f0c674!important;font-weight:700!important}.pl-entm{color:#c66!important}.pl-eoa{color:#b294bb!important}.pl-eoac{color:#c66!important}.pl-eoac .pl-pde{color:#c66!important}.pl-eoai{color:#b294bb!important}.pl-eoai .pl-pde{color:#b294bb!important}.pl-eoi{color:#f0c674!important}.pl-k{color:#b294bb!important}.pl-ko{color:#b294bb!important}.pl-kolp{color:#b294bb!important}.pl-kos{color:#de935f!important}.pl-kou{color:#de935f!important}.pl-mai .pl-sf{color:#c66!important}.pl-mb{color:#b5bd68!important;font-weight:700!important}.pl-mc{color:#b294bb!important}.pl-mh .pl-pdh{color:#de935f!important}.pl-mi{color:#b294bb!important;font-style:italic!important}.pl-ml{color:#b5bd68!important}.pl-mm{color:#c66!important}.pl-mp{color:#81a2be!important}.pl-mp1 .pl-sf{color:#81a2be!important}.pl-mq{color:#de935f!important}.pl-mr{color:#b294bb!important}.pl-ms{color:#b294bb!important}.pl-pdb{color:#b5bd68!important;font-weight:700!important}.pl-pdc{color:#969896!important;font-style:italic!important}.pl-pdc1{color:#de935f!important}.pl-pde{color:#de935f!important}.pl-pdi{color:#b294bb!important;font-style:italic!important}.pl-pds{color:#b5bd68!important}.pl-pdv{color:#c66!important}.pl-pse{color:#de935f!important}.pl-pse .pl-s2{color:#de935f!important}.pl-s{color:#b294bb!important}.pl-s1{color:#b5bd68!important}.pl-s2{color:#c5c8c6!important}.pl-mp .pl-s3{color:#b294bb!important}.pl-s3{color:#81a2be!important}.pl-sc{color:#c5c8c6!important}.pl-scp{color:#de935f!important}.pl-sf{color:#dad085!important}.pl-smc{color:#f0c674!important}.pl-smi{color:#c5c8c6!important}.pl-smp{color:#c5c8c6!important}.pl-sok{color:#b294bb!important}.pl-sol{color:#b5bd68!important}.pl-som{color:#c66!important}.pl-sr{color:#c66!important}.pl-sra{color:#b294bb!important}.pl-src{color:#b294bb!important}.pl-sre{color:#b294bb!important}.pl-st{color:#b294bb!important}.pl-stj{color:#c5c8c6!important}.pl-stp{color:#de935f!important}.pl-sv{color:#de935f!important}.pl-v{color:#de935f!important}.pl-vi{color:#de935f!important}.pl-vo{color:#c66!important}.pl-vpf{color:#de935f!important}.pl-mi1{color:#8f9d6a!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#8f9d6a!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#c66!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#c66!important;background:rgba(64,0,0,.5)!important}.pl-mdr{color:#de935f!important;font-weight:400!important}.pl-mdh{color:#c66!important;font-weight:400!important}.pl-mdi{color:#c66!important;font-weight:400!important}.pl-ib{background-color:#c66!important}.pl-id{background-color:#c66!important;color:#fff!important}.pl-ii, .pl-ii .pl-cce{background-color:#c66!important;color:#fff!important}.pl-iu{background-color:#c66!important}.pl-mo{color:#c5c8c6!important}.pl-mri{color:#de935f!important}.pl-ms1{background-color:#c5c8c6!important}.pl-va{color:#de935f!important}.pl-vpu{color:#de935f!important}.pl-entl{color:#c5c8c6!important}\r\n", 55 | "Tomorrow Night Eighties": "/*! GitHub: Tomorrow Night Eighties *\\/.CodeMirror, .highlight{background-color:#000!important;color:#ccc!important}.blob-code, .blob-code-inner{color:#ccc!important}.pl-c, .pl-c span{color:#969896!important;font-style:italic!important}.pl-c1{color:#de935f!important}.pl-cce{color:#de935f!important}.pl-cn{color:#de935f!important}.pl-coc{color:#de935f!important}.pl-cos{color:#b5bd68!important}.pl-e{color:#f0c674!important}.pl-ef{color:#f0c674!important}.pl-en{color:#f0c674!important}.pl-enc{color:#de935f!important}.pl-enf{color:#f0c674!important}.pl-enm{color:#f0c674!important}.pl-ens{color:#de935f!important}.pl-ent{color:#b294bb!important}.pl-entc{color:#f0c674!important}.pl-enti{color:#f0c674!important;font-weight:700!important}.pl-entm{color:#c66!important}.pl-eoa{color:#b294bb!important}.pl-eoac{color:#c66!important}.pl-eoac .pl-pde{color:#c66!important}.pl-eoai{color:#b294bb!important}.pl-eoai .pl-pde{color:#b294bb!important}.pl-eoi{color:#f0c674!important}.pl-k{color:#b294bb!important}.pl-ko{color:#b294bb!important}.pl-kolp{color:#b294bb!important}.pl-kos{color:#de935f!important}.pl-kou{color:#de935f!important}.pl-mai .pl-sf{color:#c66!important}.pl-mb{color:#b5bd68!important;font-weight:700!important}.pl-mc{color:#b294bb!important}.pl-mh .pl-pdh{color:#de935f!important}.pl-mi{color:#b294bb!important;font-style:italic!important}.pl-ml{color:#b5bd68!important}.pl-mm{color:#c66!important}.pl-mp{color:#81a2be!important}.pl-mp1 .pl-sf{color:#81a2be!important}.pl-mq{color:#de935f!important}.pl-mr{color:#b294bb!important}.pl-ms{color:#b294bb!important}.pl-pdb{color:#b5bd68!important;font-weight:700!important}.pl-pdc{color:#969896!important;font-style:italic!important}.pl-pdc1{color:#de935f!important}.pl-pde{color:#de935f!important}.pl-pdi{color:#b294bb!important;font-style:italic!important}.pl-pds{color:#b5bd68!important}.pl-pdv{color:#c66!important}.pl-pse{color:#de935f!important}.pl-pse .pl-s2{color:#de935f!important}.pl-s{color:#b294bb!important}.pl-s1{color:#b5bd68!important}.pl-s2{color:#c5c8c6!important}.pl-mp .pl-s3{color:#b294bb!important}.pl-s3{color:#81a2be!important}.pl-sc{color:#c5c8c6!important}.pl-scp{color:#de935f!important}.pl-sf{color:#dad085!important}.pl-smc{color:#f0c674!important}.pl-smi{color:#c5c8c6!important}.pl-smp{color:#c5c8c6!important}.pl-sok{color:#b294bb!important}.pl-sol{color:#b5bd68!important}.pl-som{color:#c66!important}.pl-sr{color:#c66!important}.pl-sra{color:#b294bb!important}.pl-src{color:#b294bb!important}.pl-sre{color:#b294bb!important}.pl-st{color:#b294bb!important}.pl-stj{color:#c5c8c6!important}.pl-stp{color:#de935f!important}.pl-sv{color:#de935f!important}.pl-v{color:#de935f!important}.pl-vi{color:#de935f!important}.pl-vo{color:#c66!important}.pl-vpf{color:#de935f!important}.pl-mi1{color:#8f9d6a!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#8f9d6a!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#c66!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#c66!important;background:rgba(64,0,0,.5)!important}.pl-mdr{color:#de935f!important;font-weight:400!important}.pl-mdh{color:#c66!important;font-weight:400!important}.pl-mdi{color:#c66!important;font-weight:400!important}.pl-ib{background-color:#c66!important}.pl-id{background-color:#c66!important;color:#fff!important}.pl-ii, .pl-ii .pl-cce{background-color:#c66!important;color:#fff!important}.pl-iu{background-color:#c66!important}.pl-mo{color:#c5c8c6!important}.pl-mri{color:#de935f!important}.pl-ms1{background-color:#c5c8c6!important}.pl-va{color:#de935f!important}.pl-vpu{color:#de935f!important}.pl-entl{color:#c5c8c6!important}\r\n", 56 | "Tomorrow Night": "/*! GitHub: Tomorrow Night *\\/.CodeMirror, .highlight{background-color:#1d1f21!important;color:#c5c8c6!important}.blob-code, .blob-code-inner{color:#c5c8c6!important}.pl-c, .pl-c span{color:#969896!important;font-style:italic!important}.pl-c1{color:#de935f!important}.pl-cce{color:#de935f!important}.pl-cn{color:#de935f!important}.pl-coc{color:#de935f!important}.pl-cos{color:#b5bd68!important}.pl-e{color:#f0c674!important}.pl-ef{color:#f0c674!important}.pl-en{color:#f0c674!important}.pl-enc{color:#de935f!important}.pl-enf{color:#f0c674!important}.pl-enm{color:#f0c674!important}.pl-ens{color:#de935f!important}.pl-ent{color:#b294bb!important}.pl-entc{color:#f0c674!important}.pl-enti{color:#f0c674!important;font-weight:700!important}.pl-entm{color:#c66!important}.pl-eoa{color:#b294bb!important}.pl-eoac{color:#c66!important}.pl-eoac .pl-pde{color:#c66!important}.pl-eoai{color:#b294bb!important}.pl-eoai .pl-pde{color:#b294bb!important}.pl-eoi{color:#f0c674!important}.pl-k{color:#b294bb!important}.pl-ko{color:#b294bb!important}.pl-kolp{color:#b294bb!important}.pl-kos{color:#de935f!important}.pl-kou{color:#de935f!important}.pl-mai .pl-sf{color:#c66!important}.pl-mb{color:#b5bd68!important;font-weight:700!important}.pl-mc{color:#b294bb!important}.pl-mh .pl-pdh{color:#de935f!important}.pl-mi{color:#b294bb!important;font-style:italic!important}.pl-ml{color:#b5bd68!important}.pl-mm{color:#c66!important}.pl-mp{color:#81a2be!important}.pl-mp1 .pl-sf{color:#81a2be!important}.pl-mq{color:#de935f!important}.pl-mr{color:#b294bb!important}.pl-ms{color:#b294bb!important}.pl-pdb{color:#b5bd68!important;font-weight:700!important}.pl-pdc{color:#969896!important;font-style:italic!important}.pl-pdc1{color:#de935f!important}.pl-pde{color:#de935f!important}.pl-pdi{color:#b294bb!important;font-style:italic!important}.pl-pds{color:#b5bd68!important}.pl-pdv{color:#c66!important}.pl-pse{color:#de935f!important}.pl-pse .pl-s2{color:#de935f!important}.pl-s{color:#b294bb!important}.pl-s1{color:#b5bd68!important}.pl-s2{color:#c5c8c6!important}.pl-mp .pl-s3{color:#b294bb!important}.pl-s3{color:#81a2be!important}.pl-sc{color:#c5c8c6!important}.pl-scp{color:#de935f!important}.pl-sf{color:#dad085!important}.pl-smc{color:#f0c674!important}.pl-smi{color:#c5c8c6!important}.pl-smp{color:#c5c8c6!important}.pl-sok{color:#b294bb!important}.pl-sol{color:#b5bd68!important}.pl-som{color:#c66!important}.pl-sr{color:#c66!important}.pl-sra{color:#b294bb!important}.pl-src{color:#b294bb!important}.pl-sre{color:#b294bb!important}.pl-st{color:#b294bb!important}.pl-stj{color:#c5c8c6!important}.pl-stp{color:#de935f!important}.pl-sv{color:#de935f!important}.pl-v{color:#de935f!important}.pl-vi{color:#de935f!important}.pl-vo{color:#c66!important}.pl-vpf{color:#de935f!important}.pl-mi1{color:#8f9d6a!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#8f9d6a!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#c66!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#c66!important;background:rgba(64,0,0,.5)!important}.pl-mdr{color:#de935f!important;font-weight:400!important}.pl-mdh{color:#c66!important;font-weight:400!important}.pl-mdi{color:#c66!important;font-weight:400!important}.pl-ib{background-color:#c66!important}.pl-id{background-color:#c66!important;color:#fff!important}.pl-ii, .pl-ii .pl-cce{background-color:#c66!important;color:#fff!important}.pl-iu{background-color:#c66!important}.pl-mo{color:#c5c8c6!important}.pl-mri{color:#de935f!important}.pl-ms1{background-color:#c5c8c6!important}.pl-va{color:#de935f!important}.pl-vpu{color:#de935f!important}.pl-entl{color:#c5c8c6!important}\r\n", 57 | "Vibrant Ink": "/*! GitHub: Vibrant Ink *\\/.CodeMirror, .highlight{background-color:#0f0f0f!important;color:#fff!important}.blob-code, .blob-code-inner{color:#fff!important}.pl-c, .pl-c span{color:#93c!important;font-style:italic!important}.pl-c1{color:#399!important}.pl-e{color:#f60!important}.pl-en{color:#fff!important}.pl-ent{color:#fc0!important}.pl-k{color:#f60!important}.pl-mb{color:#6f0!important;font-weight:700!important}.pl-mdh{color:#f60!important}.pl-mdr{color:#f60!important}.pl-mh{color:#9c9!important}.pl-mh .pl-en{color:#9c9!important;font-weight:700!important}.pl-mi{color:#f60!important;font-style:italic!important}.pl-ml{color:#f60!important}.pl-mm{color:#f60!important}.pl-mo{color:#f60!important}.pl-mp{color:#f60!important}.pl-mq{color:#93c!important}.pl-mr{color:#f60!important}.pl-ms{color:#f60!important}.pl-pds{color:#6f0!important}.pl-s{color:#fc0!important}.pl-s1{color:#6f0!important}.pl-s1 .pl-pse .pl-s2{color:#6f0!important}.pl-s1 .pl-s2{color:#399!important}.pl-s1 .pl-v{color:#f60!important}.pl-s3{color:#fc0!important}.pl-sc{color:#fff!important}.pl-smi{color:#399!important}.pl-smp{color:#399!important}.pl-sr{color:#44b4cc!important}.pl-sr .pl-cce{color:#9c9!important}.pl-sr .pl-sra{color:#44b4cc!important}.pl-sr .pl-sre{color:#44b4cc!important}.pl-src{color:#6f0!important}.pl-st{color:#f60!important}.pl-stj{color:#399!important}.pl-sv{color:#6f0!important}.pl-v{color:#fc0!important}.pl-vo{color:#399!important}.pl-vpf{color:#fff!important}.pl-mi1{color:#fff!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#fff!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#fff!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#fff!important;background:rgba(64,0,0,.5)!important}.pl-id{color:#cf3!important;background:#000!important}.pl-ii{color:#cf3!important;background:#000!important}.highlight-source-css .pl-c1{color:#9c9!important}.highlight-source-css .pl-ent{color:#399!important}.highlight-source-css .pl-s3{color:#fff!important}.highlight-source-css .pl-sc{color:#399!important}.highlight-text-html-basic .pl-ent{color:#f60!important}.highlight-text-html-basic .pl-e{color:#9c9!important}.highlight-source-js .pl-vpf{color:#fc0!important}.highlight-text-html-php .pl-s{color:#f60!important}.highlight-text-html-php .pl-s3{color:#f60!important}.highlight-text-html-php .pl-vo{color:#fc0!important}.highlight-source-c\\+\\+ .pl-s3{color:#fff!important}\r\n" 58 | } 59 | } 60 | } 61 | } -------------------------------------------------------------------------------- /github-community-dark.user.css: -------------------------------------------------------------------------------- 1 | /* ==UserStyle== 2 | @name GitHub Community Dark 3 | @version 1.0.0 4 | @description Darker GitHub Community 5 | @namespace StylishThemes 6 | @author StylishThemes 7 | @homepageURL https://github.com/StylishThemes/GitHub-Community-Dark 8 | @updateURL https://raw.githubusercontent.com/StylishThemes/GitHub-Community-Dark/master/github-community-dark.user.css 9 | @license CC-BY-SA-4.0 10 | ==/UserStyle== */ 11 | @-moz-document domain("github.community") { 12 | /* THIS STYLE IS NO LONGER SUPPORTED Please USE https://github.com/StylishThemes/Discourse-Dark *//* THIS STYLE IS NO LONGER SUPPORTED Please USE https://github.com/StylishThemes/Discourse-Dark *//* THIS STYLE IS NO LONGER SUPPORTED Please USE https://github.com/StylishThemes/Discourse-Dark *//* THIS STYLE IS NO LONGER SUPPORTED Please USE https://github.com/StylishThemes/Discourse-Dark */ 13 | img, img.avatar, button, .btn, .octicon { 14 | display: none !important; 15 | } 16 | body * { 17 | background-color: #222 !important; 18 | color: transparent !important; 19 | border-color: transparent !important; 20 | box-shadow: none !important; 21 | } 22 | body section#main::before { 23 | content: "⚠️ GitHub Community Dark is NOW DISCONTINUED!!!"; 24 | font-size: 4em; 25 | line-height: 2em; 26 | text-align: center; 27 | color: #c00; 28 | display: block; 29 | padding-top: 20px; 30 | } 31 | body section#main #ember4::before { 32 | content: "GitHub community has moved to Discourse."; 33 | font-size: 4em; 34 | line-height: 2.5em; 35 | text-align: center; 36 | color: #4f3; 37 | display: block; 38 | } 39 | body section#main #ember5::before { 40 | content: "Remove style and USE"; 41 | font-size: 4em; 42 | line-height: 2.5em; 43 | text-align: center; 44 | color: #fc3; 45 | display: block; 46 | } 47 | body section#main #ember6::before { 48 | content: "https://github.com/StylishThemes/Discourse-Dark"; 49 | font-size: 3em; 50 | line-height: 3em; 51 | white-space: no-wrap; 52 | text-align: center; 53 | color: #8c9ed9; 54 | display: block; 55 | user-select: all; 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /images/screenshots/after_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StylishThemes/GitHub-Community-Dark/5247967f2310a0962bc5710d79346a27060de167/images/screenshots/after_blue.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "github-community-dark", 3 | "title": "GitHub Community Dark", 4 | "version": "1.0.0", 5 | "description": "Darker GitHub Community", 6 | "license": "CC-BY-SA-4.0", 7 | "repository": "StylishThemes/GitHub-Community-Dark", 8 | "homepage": "https://github.com/StylishThemes/GitHub-Community-Dark", 9 | "main": "github-community-dark.user.css", 10 | "engines": { 11 | "node": ">=10" 12 | }, 13 | "devDependencies": { 14 | "eslint": "^6.8.0", 15 | "eslint-config-silverwind": "^11.0.2", 16 | "perfectionist": "^2.4.0", 17 | "stylelint": "^13.3.2", 18 | "stylelint-config-silverwind": "^2.0.8", 19 | "stylelint-config-standard": "^20.0.0", 20 | "updates": "^10.2.7", 21 | "versions": "^8.2.7" 22 | }, 23 | "scripts": { 24 | "authors": "bash tools/authors", 25 | "themes": "node tools/add-themes.js", 26 | "clean": "npm run perfectionist && node tools/clean.js", 27 | "lint": "eslint tools/*.js && stylelint github-community-dark.user.css themes", 28 | "patch": "versions -p -C patch github-community-dark.user.css", 29 | "minor": "versions -p -C minor github-community-dark.user.css", 30 | "major": "versions -p -C major github-community-dark.user.css", 31 | "perfectionist": "perfectionist github-community-dark.user.css github-community-dark.user.css --indentSize 2 --maxAtRuleLength 250", 32 | "stylelint": "stylelint --quiet --color -- github-community-dark.user.css", 33 | "test": "npm run lint", 34 | "update": "updates -cu && npm install", 35 | "usercss": "node tools/add-themes.js && node tools/update-usercss.js" 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /themes/ambiance.min.css: -------------------------------------------------------------------------------- 1 | /*! GitHub: Ambiance */.CodeMirror, .highlight{background-color:#202020!important;color:#e6e1dc!important}.blob-code, .blob-code-inner{color:#e6e1dc!important}.pl-c, .pl-c span{color:#555!important;font-style:italic!important}.pl-c1{color:#cf7ea9!important}.pl-e{color:#aac6e3!important}.pl-en{color:#fa8d6a!important}.pl-ent{color:#aac6e3!important}.pl-k{color:#fa8d6a!important}.pl-mb{color:#cf7ea9!important;font-weight:700!important}.pl-mdh{color:#cda869!important}.pl-mdr{color:#cda869!important}.pl-mh{color:#9b859d!important}.pl-mh .pl-en{color:#9b859d!important;font-weight:700!important}.pl-mi{color:#cda869!important;font-style:italic!important}.pl-ml{color:#cda869!important}.pl-mm{color:#cda869!important}.pl-mo{color:#cda869!important}.pl-mp{color:#cda869!important}.pl-mq{color:#555!important}.pl-mr{color:#cda869!important}.pl-ms{color:#cda869!important}.pl-pds{color:#8f9d6a!important}.pl-s{color:#aac6e3!important}.pl-s1{color:#8f9d6a!important}.pl-s1 .pl-pse .pl-s2{color:#8f9d6a!important}.pl-s1 .pl-s2{color:#99c!important}.pl-s1 .pl-v{color:#cda869!important}.pl-s3{color:#cda869!important}.pl-sc{color:#9b859d!important}.pl-smi{color:#99c!important}.pl-smp{color:#99c!important}.pl-sr{color:#dad085!important}.pl-sr .pl-cce{color:#9b859d!important}.pl-sr .pl-sra{color:#dad085!important}.pl-sr .pl-sre{color:#dad085!important}.pl-src{color:#dad085!important}.pl-st{color:#aac6e3!important}.pl-stj{color:#99c!important}.pl-sv{color:#cf7ea9!important}.pl-v{color:#aac6e3!important}.pl-vo{color:#99c!important}.pl-vpf{color:#99c!important}.pl-mi1{color:#f8f8f8!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#f8f8f8!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#f8f8f8!important;background:rgba(86,45,86,.75)!important}.pl-mdhf{color:#f8f8f8!important;background:rgba(86,45,86,.75)!important}.pl-id{color:#f8f8f8!important;background:rgba(86,45,86,.75)!important}.pl-ii{color:#f8f8f8!important;background:rgba(86,45,86,.75)!important} 2 | -------------------------------------------------------------------------------- /themes/chaos.min.css: -------------------------------------------------------------------------------- 1 | /*! GitHub: Chaos */.CodeMirror, .highlight{background-color:#161616!important;color:#e6e1dc!important}.blob-code, .blob-code-inner{color:#e6e1dc!important}.pl-c, .pl-c span{color:#555!important;font-style:italic!important}.pl-c1{color:#fdc251!important}.pl-e{color:#974!important}.pl-en{color:#974!important}.pl-ent{color:#974!important}.pl-k{color:#00698f!important}.pl-mb{color:#1edafb!important;font-weight:700!important}.pl-mdh{color:#00698f!important}.pl-mdr{color:#00698f!important}.pl-mh{color:#fdc251!important}.pl-mh .pl-en{color:#fdc251!important;font-weight:700!important}.pl-mi{color:#00698f!important;font-style:italic!important}.pl-ml{color:#00698f!important}.pl-mm{color:#00698f!important}.pl-mo{color:#00698f!important}.pl-mp{color:#00698f!important}.pl-mq{color:#555!important}.pl-mr{color:#00698f!important}.pl-ms{color:#00698f!important}.pl-pds{color:#58c554!important}.pl-s{color:#974!important}.pl-s1{color:#58c554!important}.pl-s1 .pl-pse .pl-s2{color:#58c554!important}.pl-s1 .pl-s2{color:#1edafb!important}.pl-s1 .pl-v{color:#00698f!important}.pl-s3{color:#00698f!important}.pl-sc{color:#999!important}.pl-smi{color:#be53e6!important}.pl-smp{color:#be53e6!important}.pl-sr{color:#ff308f!important}.pl-sr .pl-cce{color:#fdc251!important}.pl-sr .pl-sra{color:#ff308f!important}.pl-sr .pl-sre{color:#ff308f!important}.pl-src{color:#ff308f!important}.pl-st{color:#e6e1dc!important}.pl-stj{color:#be53e6!important}.pl-sv{color:#1edafb!important}.pl-v{color:#974!important}.pl-vo{color:#be53e6!important}.pl-vpf{color:#974!important}.pl-mi1{color:#fff!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#fff!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#fff!important;background:#900!important}.pl-mdhf{color:#fff!important;background:#900!important}.pl-id{color:#fff!important;background:#900!important}.pl-ii{color:#fff!important;background:#900!important} 2 | -------------------------------------------------------------------------------- /themes/clouds-midnight.min.css: -------------------------------------------------------------------------------- 1 | /*! GitHub: Clouds_Midnight */.CodeMirror, .highlight{background-color:#191919!important;color:#929292!important}.blob-code, .blob-code-inner{color:#929292!important}.pl-c, .pl-c span{color:#3c403b!important;font-style:italic!important}.pl-c1{color:#39946a!important}.pl-e{color:#929292!important}.pl-en{color:#929292!important}.pl-ent{color:#929292!important}.pl-k{color:#927c5d!important}.pl-mb{color:#39946a!important;font-weight:700!important}.pl-mdh{color:#927c5d!important}.pl-mdr{color:#927c5d!important}.pl-mh{color:#366f1a!important}.pl-mh .pl-en{color:#366f1a!important;font-weight:700!important}.pl-mi{color:#927c5d!important;font-style:italic!important}.pl-ml{color:#927c5d!important}.pl-mm{color:#927c5d!important}.pl-mo{color:#927c5d!important}.pl-mp{color:#927c5d!important}.pl-mq{color:#3c403b!important}.pl-mr{color:#927c5d!important}.pl-ms{color:#927c5d!important}.pl-pds{color:#5d90cd!important}.pl-s{color:#e92e2e!important}.pl-s1{color:#5d90cd!important}.pl-s1 .pl-pse .pl-s2{color:#5d90cd!important}.pl-s1 .pl-s2{color:#606060!important}.pl-s1 .pl-v{color:#927c5d!important}.pl-s3{color:#927c5d!important}.pl-sc{color:#366f1a!important}.pl-smi{color:#606060!important}.pl-smp{color:#606060!important}.pl-sr{color:#e92e2e!important}.pl-sr .pl-cce{color:#366f1a!important}.pl-sr .pl-sra{color:#e92e2e!important}.pl-sr .pl-sre{color:#e92e2e!important}.pl-src{color:#e92e2e!important}.pl-st{color:#e92e2e!important}.pl-stj{color:#606060!important}.pl-sv{color:#39946a!important}.pl-v{color:#5d90cd!important}.pl-vo{color:#606060!important}.pl-vpf{color:#606060!important}.pl-mi1{color:#fff!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#fff!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#fff!important;background:#e92e2e!important}.pl-mdhf{color:#fff!important;background:#e92e2e!important}.pl-id{color:#fff!important;background:#e92e2e!important}.pl-ii{color:#fff!important;background:#e92e2e!important} 2 | -------------------------------------------------------------------------------- /themes/cobalt.min.css: -------------------------------------------------------------------------------- 1 | /*! GitHub: Cobalt */.CodeMirror, .highlight{background-color:#002240!important;color:#fff!important}.blob-code, .blob-code-inner{color:#fff!important}.pl-c, .pl-c span{color:#08f!important;font-style:italic!important}.pl-c1{color:#ff628c!important}.pl-e{color:#ff9d00!important}.pl-en{color:#fff!important}.pl-ent{color:#fd0!important}.pl-k{color:#ff9d00!important}.pl-mb{color:#ff628c!important;font-weight:700!important}.pl-mdh{color:#ff9d00!important}.pl-mdr{color:#ff9d00!important}.pl-mh{color:#eb939a!important}.pl-mh .pl-en{color:#eb939a!important;font-weight:700!important}.pl-mi{color:#ff9d00!important;font-style:italic!important}.pl-ml{color:#ff9d00!important}.pl-mm{color:#ff9d00!important}.pl-mo{color:#ff9d00!important}.pl-mp{color:#ff9d00!important}.pl-mq{color:#08f!important}.pl-mr{color:#ff9d00!important}.pl-ms{color:#ff9d00!important}.pl-pds{color:#3ad900!important}.pl-s{color:#3ad900!important}.pl-s1{color:#3ad900!important}.pl-s1 .pl-pse .pl-s2{color:#3ad900!important}.pl-s1 .pl-s2{color:#ccc!important}.pl-s1 .pl-v{color:#3ad900!important}.pl-s3{color:#ffb054!important}.pl-sc{color:#ffb054!important}.pl-smi{color:#ccc!important}.pl-smp{color:#ccc!important}.pl-sr{color:#80ffc2!important}.pl-sr .pl-cce{color:#eb939a!important}.pl-sr .pl-sra{color:#80ffc2!important}.pl-sr .pl-sre{color:#80ffc2!important}.pl-src{color:#80ffc2!important}.pl-st{color:#ff9d00!important}.pl-stj{color:#ccc!important}.pl-sv{color:#ff628c!important}.pl-v{color:#fd0!important}.pl-vo{color:#ccc!important}.pl-vpf{color:#ccc!important}.pl-mi1{color:#f8f8f8!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#f8f8f8!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#f8f8f8!important;background:#800f00!important}.pl-mdhf{color:#f8f8f8!important;background:#800f00!important}.pl-id{color:#f8f8f8!important;background:#800f00!important}.pl-ii{color:#f8f8f8!important;background:#800f00!important}.highlight-source-js .pl-st{color:#ffee80!important}.highlight-source-css .pl-s3{color:#80ffbb!important}.highlight-text-html-basic .pl-ent{color:#9effff!important} 2 | -------------------------------------------------------------------------------- /themes/github-dark.min.css: -------------------------------------------------------------------------------- 1 | /*! GitHub: GitHub Dark */.CodeMirror, .highlight{background:#141414!important;color:#ccc!important}.blob-code, .blob-code-inner{color:#ccc!important}.pl-c{color:#969896}.pl-c1, .pl-s .pl-v{color:#0099cd}.pl-e, .pl-en{color:#9774cb}.pl-s .pl-s1, .pl-smi{color:#ddd}.pl-ent{color:#7bcc72}.pl-k{color:#cc2372}.pl-pds, .pl-s, .pl-s .pl-pse .pl-s1, .pl-sr, .pl-sr .pl-cce, .pl-sr .pl-sra, .pl-sr .pl-sre{color:#3c66e2}.pl-smw, .pl-v{color:#fb8764}.pl-bu{color:#e63525}.pl-ii{color:#f8f8f8;background-color:#e63525}.pl-sr .pl-cce{font-weight:700;color:#7bcc72}.pl-ml{color:#c26b2b}.pl-mh, .pl-mh .pl-en, .pl-ms{font-weight:700;color:#4c66e2}.pl-mq{color:#00acac}.pl-mi{font-style:italic;color:#ddd}.pl-mb{font-weight:700;color:#ddd}.pl-md{color:#bd2c00;background-color:#ffecec}.pl-mi1{color:#55a532;background-color:#eaffea}.pl-mc{color:#ef9700;background-color:#ffe3b4}.pl-mi2{color:#d8d8d8;background-color:grey}.pl-mdr{font-weight:700;color:#9774cb}.pl-mo{color:#264ec5}.pl-ba{color:#e1e1e1}.pl-sg{color:#6e7880}.pl-corl{text-decoration:underline;color:#3c66e2} 2 | -------------------------------------------------------------------------------- /themes/idle-fingers.min.css: -------------------------------------------------------------------------------- 1 | /*! GitHub: Idle Fingers */.CodeMirror, .highlight{background-color:#323232!important;color:#fff!important}.blob-code, .blob-code-inner{color:#fff!important}.pl-c, .pl-c span{color:#bc9458!important;font-style:italic!important}.pl-c1{color:#6c99bb!important}.pl-cce{color:#cc7833!important}.pl-cn{color:#cc7833!important}.pl-coc{color:#cc7833!important}.pl-cos{color:#a5c261!important}.pl-e{color:#ffc66d!important}.pl-ef{color:#b83426!important}.pl-en{color:#ffc66d!important}.pl-enc{color:#cc7833!important}.pl-enf{color:#b83426!important}.pl-enm{color:#b83426!important}.pl-ens{color:#cc7833!important}.pl-ent{color:#ffe5bb!important}.pl-entc{color:#b83426!important}.pl-enti{color:#b83426!important;font-weight:700!important}.pl-entm{color:#b83426!important}.pl-eoa{color:#ffe5bb!important}.pl-eoac{color:#b83426!important}.pl-eoac .pl-pde{color:#b83426!important}.pl-eoai{color:#ffe5bb!important}.pl-eoai .pl-pde{color:#ffe5bb!important}.pl-eoi{color:#b83426!important}.pl-k{color:#cc7833!important}.pl-ko{color:#ffe5bb!important}.pl-kolp{color:#ffe5bb!important}.pl-kos{color:#cc7833!important}.pl-kou{color:#cc7833!important}.pl-mai .pl-sf{color:#b83426!important}.pl-mb{color:#a5c261!important;font-weight:700!important}.pl-mc{color:#ffe5bb!important}.pl-mh .pl-pdh{color:#cc7833!important}.pl-mi{color:#ffe5bb!important;font-style:italic!important}.pl-ml{color:#a5c261!important}.pl-mm{color:#b83426!important}.pl-mp{color:#cc7833!important}.pl-mp1 .pl-sf{color:#cc7833!important}.pl-mq{color:#cc7833!important}.pl-mr{color:#ffe5bb!important}.pl-ms{color:#ffe5bb!important}.pl-pdb{color:#a5c261!important;font-weight:700!important}.pl-pdc{color:#bc9458!important;font-style:italic!important}.pl-pdc1{color:#6c99bb!important}.pl-pde{color:#cc7833!important}.pl-pdi{color:#ffe5bb!important;font-style:italic!important}.pl-pds{color:#a5c261!important}.pl-pdv{color:#b83426!important}.pl-pse{color:#cc7833!important}.pl-pse .pl-s2{color:#cc7833!important}.pl-s{color:#cc7833!important}.pl-s1{color:#a5c261!important}.pl-s2{color:#fff!important}.pl-mp .pl-s3{color:#cc7833!important}.pl-s3{color:#ffe5bb!important}.pl-sc{color:#ffc66d!important}.pl-scp{color:#6c99bb!important}.pl-sf{color:#ffc66d!important}.pl-smc{color:#b83426!important}.pl-smi{color:#ffc66d!important}.pl-smp{color:#ffc66d!important}.pl-sok{color:#ffe5bb!important}.pl-sol{color:#a5c261!important}.pl-som{color:#b83426!important}.pl-sr{color:#b83426!important}.pl-sra{color:#cc3!important}.pl-src{color:#cc3!important}.pl-sre{color:#cc3!important}.pl-st{color:#cc7833!important}.pl-stj{color:#fff!important}.pl-stp{color:#cc7833!important}.pl-sv{color:#cc7833!important}.pl-v{color:#cc7833!important}.pl-vi{color:#cc7833!important}.pl-vo{color:#fff!important}.pl-vpf{color:#cc7833!important}.pl-mi1{color:#a5c261!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#a5c261!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#b83426!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#b83426!important;background:rgba(64,0,0,.5)!important}.pl-mdr{color:#cc7833!important;font-weight:400!important}.pl-mdh{color:#ffc66d!important;font-weight:400!important}.pl-mdi{color:#ffc66d!important;font-weight:400!important}.pl-ib{background-color:#b83426!important}.pl-id{background-color:#b83426!important;color:#fff!important}.pl-ii{background-color:#b83426!important;color:#fff!important}.pl-iu{background-color:#b83426!important}.pl-mo{color:#ffc66d!important}.pl-mri{color:#cc7833!important}.pl-ms1{background-color:#ffc66d!important}.pl-va{color:#cc7833!important}.pl-vpu{color:#cc7833!important}.pl-entl{color:#ffc66d!important}.highlight-text-html-basic .pl-ent{color:#cc7833!important} 2 | -------------------------------------------------------------------------------- /themes/kr-theme.min.css: -------------------------------------------------------------------------------- 1 | /*! GitHub: KR theme */.CodeMirror, .highlight{background-color:#0b0a09!important;color:#fcffe0!important}.blob-code, .blob-code-inner{color:#fcffe0!important}.pl-c, .pl-c span{color:#706d5b!important;font-style:italic!important}.pl-c1{color:rgba(210,117,24,.76)!important}.pl-e{color:#fcffe0!important}.pl-en{color:#fcffe0!important}.pl-ent{color:#babd9c!important}.pl-k{color:#949c8b!important}.pl-mb{color:rgba(210,117,24,.76)!important;font-weight:700!important}.pl-mdh{color:#949c8b!important}.pl-mdr{color:#949c8b!important}.pl-mh{color:#9fc28a!important}.pl-mh .pl-en{color:#9fc28a!important;font-weight:700!important}.pl-mi{color:#949c8b!important;font-style:italic!important}.pl-ml{color:#949c8b!important}.pl-mm{color:#949c8b!important}.pl-mo{color:#949c8b!important}.pl-mp{color:#949c8b!important}.pl-mq{color:#706d5b!important}.pl-mr{color:#949c8b!important}.pl-ms{color:#949c8b!important}.pl-pds{color:rgba(164,161,181,.8)!important}.pl-s{color:#949c8b!important}.pl-s1{color:rgba(164,161,181,.8)!important}.pl-s1 .pl-pse .pl-s2{color:rgba(164,161,181,.8)!important}.pl-s1 .pl-s2{color:#babd9c!important}.pl-s1 .pl-v{color:#949c8b!important}.pl-s3{color:#85873a!important}.pl-sc{color:#fcffe0!important}.pl-smi{color:#babd9c!important}.pl-smp{color:#babd9c!important}.pl-sr{color:rgba(125,255,192,.65)!important}.pl-sr .pl-cce{color:#9fc28a!important}.pl-sr .pl-sra{color:rgba(125,255,192,.65)!important}.pl-sr .pl-sre{color:rgba(125,255,192,.65)!important}.pl-src{color:rgba(125,255,192,.65)!important}.pl-st{color:#949c8b!important}.pl-stj{color:#babd9c!important}.pl-sv{color:rgba(210,117,24,.76)!important}.pl-v{color:#fcffe0!important}.pl-vo{color:#d1a796!important}.pl-vpf{color:#d1a796!important}.pl-mi1{color:#f8f8f8!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#f8f8f8!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#f8f8f8!important;background:#a41300!important}.pl-mdhf{color:#f8f8f8!important;background:#a41300!important}.pl-id{color:#f8f8f8!important;background:#a41300!important}.pl-ii{color:#f8f8f8!important;background:#a41300!important}.highlight-source-js .pl-s3{color:#ff80e1!important}.highlight-source-js .pl-v{color:#ff80e1!important}.highlight-source-js .pl-st{color:#ffee80!important} 2 | -------------------------------------------------------------------------------- /themes/merbivore-soft.min.css: -------------------------------------------------------------------------------- 1 | /*! GitHub: Merbivore Soft */.CodeMirror, .highlight{background-color:#1c1c1c!important;color:#e6e1dc!important}.blob-code, .blob-code-inner{color:#e6e1dc!important}.pl-c, .pl-c span{color:#ad2ea4!important;font-style:italic!important}.pl-c1{color:#b3e5b4!important}.pl-e{color:#e1c582!important}.pl-en{color:#fc6f09!important}.pl-ent{color:#fc6f09!important;font-style:italic!important}.pl-k{color:#fc6f09!important}.pl-mb{color:#8ec65f!important;font-weight:700!important}.pl-mdh{color:#fc6f09!important}.pl-mdr{color:#fc6f09!important}.pl-mh{color:#8ec65f!important}.pl-mh .pl-en{color:#8ec65f!important;font-weight:700!important}.pl-mi{color:#fc6f09!important;font-style:italic!important}.pl-ml{color:#fc6f09!important}.pl-mm{color:#fc6f09!important}.pl-mo{color:#fc6f09!important}.pl-mp{color:#fc6f09!important}.pl-mq{color:#ad2ea4!important}.pl-mr{color:#fc6f09!important}.pl-ms{color:#fc6f09!important}.pl-pds{color:#8ec65f!important}.pl-s{color:#fc6f09!important}.pl-s1{color:#8ec65f!important}.pl-s1 .pl-pse .pl-s2{color:#8ec65f!important}.pl-s1 .pl-s2{color:#fc6f09!important}.pl-s1 .pl-v{color:#fc6f09!important}.pl-s3{color:#e6e1dc!important}.pl-sc{color:#68c1d8!important}.pl-smi{color:#fc6f09!important}.pl-smp{color:#fc6f09!important}.pl-sr{color:#fc6f09!important}.pl-sr .pl-cce{color:#b3e5b4!important}.pl-sr .pl-sra{color:#e1c582!important}.pl-sr .pl-sre{color:#e1c582!important}.pl-src{color:#e1c582!important}.pl-st{color:#fc6f09!important}.pl-stj{color:#fc6f09!important}.pl-sv{color:#8ec65f!important}.pl-v{color:#fc6f09!important}.pl-vo{color:#e6e1dc!important}.pl-vpf{color:#e6e1dc!important}.pl-mi1{color:#e6e1dc!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#e6e1dc!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#e6e1dc!important;background:#fe3838!important}.pl-mdhf{color:#e6e1dc!important;background:#fe3838!important}.pl-id{color:#e6e1dc!important;background:#fe3838!important}.pl-ii{color:#e6e1dc!important;background:#fe3838!important}.highlight-source-css .pl-e{color:#e6e1dc!important}.highlight-source-js .pl-c1{color:#e1c582!important}.highlight-source-js .pl-sc{color:#e6e1dc!important}.highlight-text-html-php .pl-s3{color:#fc6f09!important}.highlight-source-css .pl-s3{color:#68c1d8!important}.highlight-source-python .pl-c1{color:#e1c582!important} 2 | -------------------------------------------------------------------------------- /themes/merbivore.min.css: -------------------------------------------------------------------------------- 1 | /*! GitHub: Merbivore */.CodeMirror, .highlight{background-color:#161616!important;color:#e6e1dc!important}.blob-code, .blob-code-inner{color:#e6e1dc!important}.pl-c, .pl-c span{color:#ad2ea4!important;font-style:italic!important}.pl-c1{color:#519f50!important}.pl-e{color:#fdc251!important}.pl-en{color:#fc6f09!important}.pl-ent{color:#fc6f09!important}.pl-k{color:#fc6f09!important}.pl-mb{color:#8dff0a!important;font-weight:700!important}.pl-mdh{color:#fc6f09!important}.pl-mdr{color:#fc6f09!important}.pl-mh{color:#8dff0a!important}.pl-mh .pl-en{color:#8dff0a!important;font-weight:700!important}.pl-mi{color:#fc6f09!important;font-style:italic!important}.pl-ml{color:#fc6f09!important}.pl-mm{color:#fc6f09!important}.pl-mo{color:#fc6f09!important}.pl-mp{color:#fc6f09!important}.pl-mq{color:#ad2ea4!important}.pl-mr{color:#fc6f09!important}.pl-ms{color:#fc6f09!important}.pl-pds{color:#8dff0a!important}.pl-s{color:#fc6f09!important}.pl-s1{color:#8dff0a!important}.pl-s1 .pl-pse .pl-s2{color:#8dff0a!important}.pl-s1 .pl-s2{color:#fc6f09!important}.pl-s1 .pl-v{color:#fc6f09!important}.pl-s3{color:#e6e1dc!important}.pl-sc{color:#1edafb!important}.pl-smi{color:#fc6f09!important}.pl-smp{color:#fc6f09!important}.pl-sr{color:#fc6f09!important}.pl-sr .pl-cce{color:#519f50!important}.pl-sr .pl-sra{color:#fdc251!important}.pl-sr .pl-sre{color:#fdc251!important}.pl-src{color:#fdc251!important}.pl-st{color:#fc6f09!important}.pl-stj{color:#fc6f09!important}.pl-sv{color:#8dff0a!important}.pl-v{color:#fc6f09!important}.pl-vo{color:#e6e1dc!important}.pl-vpf{color:#e6e1dc!important}.pl-mi1{color:#e6e1dc!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#e6e1dc!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#e6e1dc!important;background:#900!important}.pl-mdhf{color:#e6e1dc!important;background:#900!important}.pl-id{color:#e6e1dc!important;background:#900!important}.pl-ii{color:#e6e1dc!important;background:#900!important}.highlight-source-css .pl-e{color:#e6e1dc!important}.highlight-source-js .pl-c1{color:#fdc251!important}.highlight-source-js .pl-sc{color:#e6e1dc!important}.highlight-text-html-php .pl-s3{color:#fc6f09!important}.highlight-source-css .pl-s3{color:#1edafb!important}.highlight-source-python .pl-c1{color:#fdc251!important} 2 | -------------------------------------------------------------------------------- /themes/mono-industrial-clear.min.css: -------------------------------------------------------------------------------- 1 | /*! GitHub: Mono Industrial clear */.CodeMirror, .highlight{background-color:#222c28!important;color:#fff!important}.blob-code, .blob-code-inner{color:#fff!important}.pl-c, .pl-c span{color:#666c68!important;background-color:#304830!important}.pl-c1{color:#e98800!important}.pl-e{color:#a8b3ab!important}.pl-en{color:#fff!important}.pl-ent{color:#a39e64!important}.pl-k{color:#a39e64!important}.pl-mb{color:#e98800!important;font-weight:700!important}.pl-mdh{color:#a39e64!important}.pl-mdr{color:#a39e64!important}.pl-mh{color:#5778b6!important}.pl-mh .pl-en{color:#5778b6!important;font-weight:700!important}.pl-mi{color:#a39e64!important;font-style:italic!important}.pl-ml{color:#a39e64!important}.pl-mm{color:#a39e64!important}.pl-mo{color:#a39e64!important}.pl-mp{color:#a39e64!important}.pl-mq{color:#666c68!important}.pl-mr{color:#a39e64!important}.pl-ms{color:#a39e64!important}.pl-pds{color:#fff!important}.pl-s{color:#c23b00!important}.pl-s1{color:#fff!important;background-color:#151c19!important}.pl-s1 .pl-pse .pl-s2{color:#fff!important;background-color:#151c19!important}.pl-s1 .pl-s2{color:#c23b00!important}.pl-s1 .pl-v{color:#a39e64!important}.pl-s3{color:#5778b6!important}.pl-sc{color:#fff!important}.pl-smi{color:#c23b00!important}.pl-smp{color:#c23b00!important}.pl-sr{color:#fff!important;background-color:#151c19!important}.pl-sr .pl-cce{color:#5778b6!important}.pl-sr .pl-sra{color:#c23b00!important}.pl-sr .pl-sre{color:#c23b00!important}.pl-src{color:#c23b00!important}.pl-st{color:#c23b00!important}.pl-stj{color:#c23b00!important}.pl-sv{color:#e98800!important}.pl-v{color:#5778b6!important}.pl-vo{color:#a8b3ab!important}.pl-vpf{color:#5778b6!important}.pl-mi1{color:#fff!important;background:rgba(0,150,0,.68)!important}.pl-mdht{color:#fff!important;background:rgba(0,153,0,.68)!important}.pl-md{color:#fff!important;background:rgba(196,0,0,.68)!important}.pl-mdhf{color:#fff!important;background:rgba(153,0,0,.68)!important}.pl-id{color:#fff!important;background:rgba(153,0,0,.68)!important}.pl-ii{color:#fff!important;background:rgba(153,0,0,.68)!important}.highlight-source-css .pl-ent{color:#e98800!important}.highlight-text-html-php .pl-s{color:#a39e64!important}.highlight-text-html-php .pl-st{color:#a39e64!important}.highlight-text-html-php .pl-s3{color:#588e60!important}.highlight-source-python .pl-st{color:#a39e64!important} 2 | -------------------------------------------------------------------------------- /themes/mono-industrial.min.css: -------------------------------------------------------------------------------- 1 | /*! GitHub: Mono Industrial */.CodeMirror, .highlight{background-color:#222c28!important;color:#fff!important}.blob-code, .blob-code-inner{color:#fff!important}.pl-c, .pl-c span{color:#666c68!important;background-color:#151c19!important}.pl-c1{color:#e98800!important}.pl-e{color:#a8b3ab!important}.pl-en{color:#fff!important}.pl-ent{color:#a39e64!important}.pl-k{color:#a39e64!important}.pl-mb{color:#e98800!important;font-weight:700!important}.pl-mdh{color:#a39e64!important}.pl-mdr{color:#a39e64!important}.pl-mh{color:#5778b6!important}.pl-mh .pl-en{color:#5778b6!important;font-weight:700!important}.pl-mi{color:#a39e64!important;font-style:italic!important}.pl-ml{color:#a39e64!important}.pl-mm{color:#a39e64!important}.pl-mo{color:#a39e64!important}.pl-mp{color:#a39e64!important}.pl-mq{color:#666c68!important}.pl-mr{color:#a39e64!important}.pl-ms{color:#a39e64!important}.pl-pds{color:#fff!important}.pl-s{color:#c23b00!important}.pl-s1{color:#fff!important;background-color:#151c19!important}.pl-s1 .pl-pse .pl-s2{color:#fff!important;background-color:#151c19!important}.pl-s1 .pl-s2{color:#c23b00!important}.pl-s1 .pl-v{color:#a39e64!important}.pl-s3{color:#5778b6!important}.pl-sc{color:#fff!important}.pl-smi{color:#c23b00!important}.pl-smp{color:#c23b00!important}.pl-sr{color:#fff!important;background-color:#151c19!important}.pl-sr .pl-cce{color:#5778b6!important}.pl-sr .pl-sra{color:#c23b00!important}.pl-sr .pl-sre{color:#c23b00!important}.pl-src{color:#c23b00!important}.pl-st{color:#c23b00!important}.pl-stj{color:#c23b00!important}.pl-sv{color:#e98800!important}.pl-v{color:#5778b6!important}.pl-vo{color:#a8b3ab!important}.pl-vpf{color:#5778b6!important}.pl-mi1{color:#fff!important;background:rgba(0,153,0,.68)!important}.pl-mdht{color:#fff!important;background:rgba(0,153,0,.68)!important}.pl-md{color:#fff!important;background:rgba(153,0,0,.68)!important}.pl-mdhf{color:#fff!important;background:rgba(153,0,0,.68)!important}.pl-id{color:#fff!important;background:rgba(153,0,0,.68)!important}.pl-ii{color:#fff!important;background:rgba(153,0,0,.68)!important}.highlight-source-css .pl-ent{color:#e98800!important}.highlight-text-html-php .pl-s{color:#a39e64!important}.highlight-text-html-php .pl-st{color:#a39e64!important}.highlight-text-html-php .pl-s3{color:#588e60!important}.highlight-source-python .pl-st{color:#a39e64!important} 2 | -------------------------------------------------------------------------------- /themes/monokai-spacegray-eighties.min.css: -------------------------------------------------------------------------------- 1 | /*! GitHub: Monokai - Spacegray Eighties */.CodeMirror, .highlight{background-color:#1c1c1c!important;color:#f8f8f8!important}.blob-code, .blob-code-inner{color:#f8f8f8!important}.pl-c, .pl-c span{color:grey!important}.pl-c1{color:#66d9ef!important}.pl-cce{color:#66d9ef!important}.pl-cn{color:#ae81ff!important}.pl-coc{color:#ae81ff!important}.pl-cos{color:#e6db74!important}.pl-e{color:#f92672!important}.pl-ef{color:#a6e22e!important}.pl-en{color:#a6e22e!important}.pl-enc{color:#66d9ef!important}.pl-enf{color:#a6e22e!important}.pl-enm{color:#a6e22e!important}.pl-ens{color:#66d9ef!important}.pl-ent{color:#f92672!important}.pl-entc{color:#a6e22e!important}.pl-enti{color:#a6e22e!important;font-weight:700!important}.pl-entm{color:#a6e22e!important}.pl-eoa{color:#f92672!important}.pl-eoac{color:#a6e22e!important}.pl-eoac .pl-pde{color:#a6e22e!important}.pl-eoai{color:#f92672!important}.pl-eoai .pl-pde{color:#f92672!important}.pl-eoi{color:#a6e22e!important}.pl-k{color:#f92672!important}.pl-ko{color:#f92672!important}.pl-kolp{color:#f92672!important}.pl-kos{color:#66d9ef!important}.pl-kou{color:#66d9ef!important}.pl-mai .pl-sf{color:#a6e22e!important}.pl-mb{color:#e6db74!important;font-weight:700!important}.pl-mc{color:#f92672!important}.pl-mh .pl-pdh{color:#66d9ef!important}.pl-mi{color:#f92672!important;font-style:italic!important}.pl-ml{color:#e6db74!important}.pl-mm{color:#a6e22e!important}.pl-mp{color:#66d9ef!important}.pl-mp1 .pl-sf{color:#66d9ef!important}.pl-mq{color:#66d9ef!important}.pl-mr{color:#f92672!important}.pl-ms{color:#f92672!important}.pl-pdb{color:#e6db74!important;font-weight:700!important}.pl-pdc{color:#75715e!important;font-style:italic!important}.pl-pdc1{color:#ae81ff!important}.pl-pde{color:#66d9ef!important}.pl-pdi{color:#f92672!important;font-style:italic!important}.pl-pds{color:#f8f8f8!important}.pl-pdv{color:#a6e22e!important}.pl-pse{color:#66d9ef!important}.pl-pse .pl-s2{color:#66d9ef!important}.pl-s{color:#e6db74!important}.pl-s1{color:#e6db74!important}.pl-s2{color:#f8f8f8!important}.pl-mp .pl-s3{color:#66d9ef!important}.pl-s3{color:#f92672!important}.pl-sc{color:#fd971f!important}.pl-scp{color:#ae81ff!important}.pl-sf{color:#fd971f!important}.pl-smc{color:#f92672!important}.pl-smi{color:#fd971f!important}.pl-smp{color:#f92672!important}.pl-sok{color:#f92672!important}.pl-sol{color:#e6db74!important}.pl-som{color:#a6e22e!important}.pl-sr{color:#a6e22e!important}.pl-sra{color:#f92672!important}.pl-src{color:#f92672!important}.pl-sre{color:#f92672!important}.pl-st{color:#66d9ef!important}.pl-stj{color:#f8f8f8!important}.pl-stp{color:#f92672!important}.pl-sv{color:#f92672!important}.pl-v{color:#f92672!important}.pl-vi{color:#f92672!important}.pl-vo{color:#a6e22e!important}.pl-vpf{color:#f92672!important}.pl-mi1{color:#a6e22e!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#a6e22e!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#f92672!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#f92672!important;background:rgba(64,0,0,.5)!important}.pl-mdr{color:#66d9ef!important;font-weight:400!important}.pl-mdh{color:#a6e22e!important;font-weight:400!important}.pl-mdi{color:#a6e22e!important;font-weight:400!important}.pl-ib{background-color:#a6e22e!important;color:#272822!important}.pl-id{background-color:#a6e22e!important;color:#272822!important}.pl-ii, .pl-ii .pl-cce{background-color:#a6e22e!important;color:#272822!important}.pl-iu{background-color:#a6e22e!important;color:#272822!important}.pl-mo{color:#fd971f!important}.pl-mri{color:#66d9ef!important}.pl-ms1{background-color:#fd971f!important}.pl-va{color:#66d9ef!important}.pl-vpu{color:#66d9ef!important}.pl-entl{color:#fd971f!important} 2 | -------------------------------------------------------------------------------- /themes/monokai.min.css: -------------------------------------------------------------------------------- 1 | /*! GitHub: Monokai */.CodeMirror, .highlight{background-color:#272822!important;color:#f8f8f2!important}.blob-code, .blob-code-inner{color:#f8f8f2!important}.pl-c, .pl-c span{color:#75715e!important;font-style:italic!important}.pl-c1{color:#ae81ff!important}.pl-cce{color:#66d9ef!important}.pl-cn{color:#66d9ef!important}.pl-coc{color:#66d9ef!important}.pl-cos{color:#e6db74!important}.pl-e{color:#a6e22e!important}.pl-ef{color:#a6e22e!important}.pl-en{color:#a6e22e!important}.pl-enc{color:#66d9ef!important}.pl-enf{color:#a6e22e!important}.pl-enm{color:#a6e22e!important}.pl-ens{color:#66d9ef!important}.pl-ent{color:#f92672!important}.pl-entc{color:#a6e22e!important}.pl-enti{color:#a6e22e!important;font-weight:700!important}.pl-entm{color:#a6e22e!important}.pl-eoa{color:#f92672!important}.pl-eoac{color:#a6e22e!important}.pl-eoac .pl-pde{color:#a6e22e!important}.pl-eoai{color:#f92672!important}.pl-eoai .pl-pde{color:#f92672!important}.pl-eoi{color:#a6e22e!important}.pl-k{color:#f92672!important}.pl-ko{color:#f92672!important}.pl-kolp{color:#f92672!important}.pl-kos{color:#66d9ef!important}.pl-kou{color:#66d9ef!important}.pl-mai .pl-sf{color:#a6e22e!important}.pl-mb{color:#e6db74!important;font-weight:700!important}.pl-mc{color:#f92672!important}.pl-mh .pl-pdh{color:#66d9ef!important}.pl-mi{color:#f92672!important;font-style:italic!important}.pl-ml{color:#e6db74!important}.pl-mm{color:#a6e22e!important}.pl-mp{color:#66d9ef!important}.pl-mp1 .pl-sf{color:#66d9ef!important}.pl-mq{color:#66d9ef!important}.pl-mr{color:#f92672!important}.pl-ms{color:#f92672!important}.pl-pdb{color:#e6db74!important;font-weight:700!important}.pl-pdc{color:#75715e!important;font-style:italic!important}.pl-pdc1{color:#ae81ff!important}.pl-pde{color:#66d9ef!important}.pl-pdi{color:#f92672!important;font-style:italic!important}.pl-pds{color:#e6db74!important}.pl-pdv{color:#a6e22e!important}.pl-pse{color:#66d9ef!important}.pl-pse .pl-s2{color:#66d9ef!important}.pl-s{color:#e6db74!important}.pl-s1{color:#e6db74!important}.pl-s2{color:#f8f8f2!important}.pl-mp .pl-s3{color:#66d9ef!important}.pl-s3{color:#f92672!important}.pl-sc{color:#fd971f!important}.pl-scp{color:#ae81ff!important}.pl-sf{color:#fd971f!important}.pl-smc{color:#f92672!important}.pl-smi{color:#66d9ef!important}.pl-smp{color:#f92672!important}.pl-sok{color:#f92672!important}.pl-sol{color:#e6db74!important}.pl-som{color:#a6e22e!important}.pl-sr{color:#a6e22e!important}.pl-sra{color:#f92672!important}.pl-src{color:#f92672!important}.pl-sre{color:#f92672!important}.pl-st{color:#66d9ef!important}.pl-stj{color:#f8f8f2!important}.pl-stp{color:#66d9ef!important}.pl-sv{color:#66d9ef!important}.pl-v{color:#66d9ef!important}.pl-vi{color:#66d9ef!important}.pl-vo{color:#a6e22e!important}.pl-vpf{color:#66d9ef!important}.pl-mi1{color:#a6e22e!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#a6e22e!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#f92672!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#f92672!important;background:rgba(64,0,0,.5)!important}.pl-mdr{color:#66d9ef!important;font-weight:400!important}.pl-mdh{color:#a6e22e!important;font-weight:400!important}.pl-mdi{color:#a6e22e!important;font-weight:400!important}.pl-ib{background-color:#a6e22e!important;color:#272822!important}.pl-id{background-color:#a6e22e!important;color:#272822!important}.pl-ii, .pl-ii .pl-cce{background-color:#a6e22e!important;color:#272822!important}.pl-iu{background-color:#a6e22e!important;color:#272822!important}.pl-mo{color:#fd971f!important}.pl-mri{color:#66d9ef!important}.pl-ms1{background-color:#fd971f!important}.pl-va{color:#66d9ef!important}.pl-vpu{color:#66d9ef!important}.pl-entl{color:#fd971f!important} 2 | -------------------------------------------------------------------------------- /themes/obsidian.min.css: -------------------------------------------------------------------------------- 1 | /*! GitHub: Obsidian */.CodeMirror, .highlight{background:#293134!important;color:#e0e2e4!important}.blob-code, .blob-code-inner{color:#e0e2e4!important}.pl-c, .pl-c span{color:#66747b!important;font-style:italic!important}.pl-c1{color:#ffcd22!important}.pl-e{color:#93c763!important}.pl-en{color:#678cb1!important}.pl-ent{color:#e0e2e4!important}.pl-k{color:#93c763!important}.pl-mb{color:#ec7600!important;font-weight:700!important}.pl-mdh{color:#93c763!important}.pl-mdr{color:#93c763!important}.pl-mh{color:#66747b!important}.pl-mh .pl-en{color:#66747b!important;font-weight:700!important}.pl-mi{color:#93c763!important;font-style:italic!important}.pl-ml{color:#93c763!important}.pl-mm{color:#93c763!important}.pl-mo{color:#93c763!important}.pl-mp{color:#93c763!important}.pl-mq{color:#66747b!important}.pl-mr{color:#93c763!important}.pl-ms{color:#93c763!important}.pl-pds{color:#ec7600!important}.pl-s{color:#ec7600!important}.pl-s1{color:#e0e2e4!important}.pl-s1 .pl-pse .pl-s2{color:#ec7600!important}.pl-s1 .pl-s2{color:#e0e2e4!important}.pl-s1 .pl-v{color:#93c763!important}.pl-s3{color:#93c763!important}.pl-sc{color:#96989a!important}.pl-smi{color:#e0e2e4!important}.pl-smp{color:#e0e2e4!important}.pl-sr{color:#d39745!important}.pl-sr .pl-cce{color:#ffcd22!important}.pl-sr .pl-sra{color:#d39745!important}.pl-sr .pl-sre{color:#d39745!important}.pl-src{color:#d39745!important}.pl-st{color:#da4236!important}.pl-stj{color:#e0e2e4!important}.pl-sv{color:#ec7600!important}.pl-v{color:#678cb1!important}.pl-vo{color:#e0e2e4!important}.pl-vpf{color:#e0e2e4!important}.pl-mi1{color:#e0e2e4!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#e0e2e4!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#e0e2e4!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#e0e2e4!important;background:rgba(64,0,0,.5)!important}.pl-id{color:#e0e2e4!important;background:rgba(64,0,0,.5)!important}.pl-ii{color:#e0e2e4!important;background:rgba(64,0,0,.5)!important}.pl-c1>.pl-c1{color:#678cb1!important} 2 | -------------------------------------------------------------------------------- /themes/one-dark.min.css: -------------------------------------------------------------------------------- 1 | /*! GitHub: One Dark */.CodeMirror, .highlight{background:#141414!important;color:#aab1bf!important}.blob-code, .blob-code-inner{color:#aab1bf!important}.pl-c, .pl-c span{color:#5b6270!important;font-style:italic!important}.pl-c1{color:#d19965!important}.pl-sr .pl-cce{color:#56b5c2!important;font-weight:400!important}.pl-cn{color:#d19965!important}.pl-e{color:#d19965!important}.pl-ef{color:#61afef!important}.pl-en{color:#61afef!important}.pl-enc{color:#e4bf7a!important}.pl-enf{color:#61afef!important}.pl-enm{color:#aab1bf!important}.pl-ens{color:#be5046!important}.pl-ent{color:#df6b75!important}.pl-entc{color:#e4bf7a!important}.pl-enti{color:#56b5c2!important}.pl-entm{color:#df6b75!important}.pl-eoa{color:#d19965!important}.pl-eoac{color:#d19965!important}.pl-eoac .pl-pde{color:#d19965!important}.pl-eoai{color:#61afef!important}.pl-eoi{color:#97c279!important}.pl-k{color:#c578dd!important}.pl-ko{color:#aab1bf!important}.pl-kolp{color:#c578dd!important}.pl-kos{color:#61afef!important}.pl-kou{color:#d19965!important}.pl-mai .pl-sf{color:#56b5c2!important}.pl-mb{color:#d19965!important;font-weight:700!important}.pl-mc{color:#c578dd!important}.pl-mh{color:#df6b75!important}.pl-mh .pl-pdh{color:#61afef!important}.pl-mi{color:#c578dd!important;font-style:italic!important}.pl-ml{color:#56b5c2!important}.pl-mm{color:#d19965!important}.pl-mp{color:#818896!important}.pl-mp1 .pl-sf{color:#aab1bf!important}.pl-mq{color:#d19965!important}.pl-mr{color:#61afef!important}.pl-ms{color:#aab1bf!important}.pl-pdb{color:#e4bf7a!important;font-weight:700!important}.pl-pdc{color:#5b6270!important;font-style:italic!important}.pl-pdc1{color:#aab1bf!important}.pl-pde{color:#c578dd!important}.pl-pdi{color:#c578dd!important;font-style:italic!important}.pl-pds{color:#97c279!important}.pl-pdv{color:#df6b75!important}.pl-pse .pl-s1{color:#97c279!important}.pl-pse .pl-s2{color:#e4bf7a!important}.pl-s{color:#97c279!important}.pl-s1{color:#97c279!important}.pl-s2{color:#e4bf7a!important}.pl-mp .pl-s3{color:#d19965!important}.pl-s3{color:#d19965!important}.pl-sc{color:#e4bf7a!important}.pl-scp{color:#aab1bf!important}.pl-sf{color:#56b5c2!important}.pl-smc{color:#aab1bf!important}.pl-smi{color:#df6b75!important}.pl-smp{color:#e4bf7a!important}.pl-sok{color:#d19965!important}.pl-sol{color:#df6b75!important}.pl-som{color:#aab1bf!important}.pl-sr{color:#56b5c2!important}.pl-sr .pl-sra{color:#56b5c2!important}.pl-src{color:#56b5c2!important}.pl-sr .pl-sre{color:#e4bf7a!important}.pl-st{color:#56b5c2!important}.pl-stj{color:#e4bf7a!important}.pl-stp{color:#818896!important}.pl-sv{color:#d19965!important}.pl-v{color:#e4bf7a!important}.pl-vi{color:#be5046!important}.pl-vo{color:#56b5c2!important}.pl-vpf{color:#aab1bf!important}.pl-mi1{color:#97c279!important;background:#020!important}.pl-mdht{color:#97c279!important;background:#020!important}.pl-md{color:#df6b75!important;background:#200!important}.pl-mdhf{color:#df6b75!important;background:#200!important}.pl-mdr{color:#aab1bf!important;font-weight:400!important}.pl-mdh{color:#df6b75!important;font-weight:400!important}.pl-mdi{color:#df6b75!important;font-weight:400!important}.pl-corl{color:#df6b75!important;text-decoration:underline!important}.pl-ib{background-color:#df6b75!important}.pl-id{background-color:#513d14!important;color:#e0c184!important}.pl-ii{background-color:#e0c184!important;color:#fff!important}.pl-iu{background-color:#e05151!important}.pl-mo{color:#aab1bf!important}.pl-mri{color:#97c279!important}.pl-ms1{color:#aab1bf!important;background-color:#373b41!important}.pl-va{color:#aab1bf!important}.pl-vpu{color:#aab1bf!important}.pl-entl{color:#df6b75!important} 2 | -------------------------------------------------------------------------------- /themes/pastel-on-dark.min.css: -------------------------------------------------------------------------------- 1 | /*! GitHub: Pastel on Dark */.CodeMirror, .highlight{background-color:#2c2828!important;color:#e6e1dc!important}.blob-code, .blob-code-inner{color:#e6e1dc!important}.pl-c, .pl-c span{color:#a6c6ff!important;font-style:italic!important}.pl-c1{color:#a5c261!important}.pl-cce{color:#afa472!important}.pl-cn{color:#ccc!important}.pl-coc{color:#757ad8!important}.pl-cos{color:#66a968!important}.pl-e{color:#e6e1dc!important}.pl-ef{color:#aeb2f8!important}.pl-en{color:#757ad8!important}.pl-enc{color:#757ad8!important}.pl-enf{color:#aeb2f8!important}.pl-enm{color:#aeb2f8!important}.pl-ens{color:#757ad8!important}.pl-ent{color:#6782d3!important}.pl-entc{color:#aeb2f8!important}.pl-enti{color:#aeb2f8!important;font-weight:700!important}.pl-entm{color:#aeb2f8!important}.pl-eoa{color:#e6e1dc!important}.pl-eoac{color:#aeb2f8!important}.pl-eoac .pl-pde{color:#aeb2f8!important}.pl-eoai{color:#e6e1dc!important}.pl-eoai .pl-pde{color:#e6e1dc!important}.pl-eoi{color:#aeb2f8!important}.pl-k{color:#757ad8!important}.pl-ko{color:#e6e1dc!important}.pl-kolp{color:#e6e1dc!important}.pl-kos{color:#757ad8!important}.pl-kou{color:#757ad8!important}.pl-mai .pl-sf{color:#aeb2f8!important}.pl-mb{color:#66a968!important;font-weight:700!important}.pl-mc{color:#e6e1dc!important}.pl-mh .pl-pdh{color:#757ad8!important}.pl-mi{color:#e6e1dc!important;font-style:italic!important}.pl-ml{color:#66a968!important}.pl-mm{color:#aeb2f8!important}.pl-mp{color:#757ad8!important}.pl-mp1 .pl-sf{color:#757ad8!important}.pl-mq{color:#757ad8!important}.pl-mr{color:#e6e1dc!important}.pl-ms{color:#e6e1dc!important}.pl-pdb{color:#66a968!important;font-weight:700!important}.pl-pdc{color:#a6c6ff!important;font-style:italic!important}.pl-pdc1{color:#4fb7c5!important}.pl-pde{color:#757ad8!important}.pl-pdi{color:#e6e1dc!important;font-style:italic!important}.pl-pds{color:#ad9361!important}.pl-pdv{color:#aeb2f8!important}.pl-pse{color:#757ad8!important}.pl-pse .pl-s2{color:#757ad8!important}.pl-s{color:#757ad8!important}.pl-s1{color:#ad9361!important}.pl-s2{color:#8f938f!important}.pl-mp .pl-s3{color:#757ad8!important}.pl-s3{color:#e6e1dc!important}.pl-sc{color:#757ad8!important}.pl-scp{color:#4fb7c5!important}.pl-sf{color:#bebf55!important}.pl-smc{color:#aeb2f8!important}.pl-smi{color:#bebf55!important}.pl-smp{color:#bebf55!important}.pl-sok{color:#e6e1dc!important}.pl-sol{color:#66a968!important}.pl-som{color:#aeb2f8!important}.pl-sr{color:#aeb2f8!important}.pl-sra{color:#797878!important}.pl-src{color:#e9c062!important}.pl-sre{color:#e9c062!important}.pl-st{color:#a5c261!important}.pl-stj{color:#8f938f!important}.pl-stp{color:#757ad8!important}.pl-sv{color:#757ad8!important}.pl-v{color:#757ad8!important}.pl-vi{color:#757ad8!important}.pl-vo{color:#a5c261!important}.pl-vpf{color:#757ad8!important}.pl-mi1{color:#66a968!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#66a968!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#aeb2f8!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#aeb2f8!important;background:rgba(64,0,0,.5)!important}.pl-mdr{color:#757ad8!important;font-weight:400!important}.pl-mdh{color:#bebf55!important;font-weight:400!important}.pl-mdi{color:#bebf55!important;font-weight:400!important}.pl-ib{background-color:#aeb2f8!important}.pl-id{background-color:#aeb2f8!important;color:#fff!important}.pl-ii, .pl-ii .pl-cce{background-color:#aeb2f8!important;color:#fff!important}.pl-iu{background-color:#aeb2f8!important}.pl-mo{color:#bebf55!important}.pl-mri{color:#757ad8!important}.pl-ms1{background-color:#bebf55!important}.pl-va{color:#757ad8!important}.pl-vpu{color:#757ad8!important}.pl-entl{color:#bebf55!important}.highlight-source-css .pl-v{color:#ad9361!important}.highlight-text-html-basic .pl-e{color:#6782d3!important}.highlight-text-tex .pl-s3{color:#757ad8!important} 2 | -------------------------------------------------------------------------------- /themes/solarized-dark.min.css: -------------------------------------------------------------------------------- 1 | /*! GitHub: Solarized Dark */.CodeMirror, .highlight{background:#002b36!important;color:#839496!important}.blob-code, .blob-code-inner{color:#839496!important}.pl-c, .pl-c span{color:#586e75!important;font-style:italic!important}.pl-c1{color:#2aa198!important}.pl-e{color:#268bd2!important}.pl-en{color:#268bd2!important}.pl-ent{color:#268bd2!important}.pl-k{color:#859900!important}.pl-mb{color:#2aa198!important;font-weight:700!important}.pl-mdh{color:#859900!important}.pl-mdr{color:#859900!important}.pl-mh{color:#cb4b16!important}.pl-mh .pl-en{color:#cb4b16!important;font-weight:700!important}.pl-mi{color:#859900!important;font-style:italic!important}.pl-ml{color:#859900!important}.pl-mm{color:#859900!important}.pl-mo{color:#859900!important}.pl-mp{color:#859900!important}.pl-mq{color:#586e75!important}.pl-mr{color:#859900!important}.pl-ms{color:#859900!important}.pl-pds{color:#2aa198!important}.pl-s{color:#268bd2!important}.pl-s1{color:#2aa198!important}.pl-s1 .pl-pse .pl-s2{color:#2aa198!important}.pl-s1 .pl-s2{color:#839496!important}.pl-s1 .pl-v{color:#859900!important}.pl-s3{color:#859900!important}.pl-sc{color:#cb4b16!important}.pl-smi{color:#839496!important}.pl-smp{color:#839496!important}.pl-sr{color:#d30102!important}.pl-sr .pl-cce{color:#cb4b16!important}.pl-sr .pl-sra{color:#d30102!important}.pl-sr .pl-sre{color:#d30102!important}.pl-src{color:#d30102!important}.pl-st{color:#dc322f!important}.pl-stj{color:#839496!important}.pl-sv{color:#2aa198!important}.pl-v{color:#268bd2!important}.pl-vo{color:#839496!important}.pl-vpf{color:#839496!important}.pl-mi1{color:#839496!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#839496!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#839496!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#839496!important;background:rgba(64,0,0,.5)!important}.pl-id{color:#839496!important;background:rgba(64,0,0,.5)!important}.pl-ii{color:#839496!important;background:rgba(64,0,0,.5)!important}.highlight-source-css .pl-k{color:#586e75!important}.highlight-source-c\+\+ .pl-s{color:#dc322f!important} 2 | -------------------------------------------------------------------------------- /themes/terminal.min.css: -------------------------------------------------------------------------------- 1 | /*! GitHub: Terminal */.CodeMirror, .highlight{background-color:#000!important;color:#dedede!important}.blob-code, .blob-code-inner{color:#dedede!important}.pl-c, .pl-c span{color:#ff4500!important;font-style:italic!important}.pl-c1{color:#e78c45!important}.pl-e{color:#d54e53!important}.pl-en{color:#dedede!important}.pl-ent{color:tomato!important}.pl-k{color:tomato!important}.pl-mb{color:#e78c45!important;font-weight:700!important}.pl-mdh{color:tomato!important}.pl-mdr{color:tomato!important}.pl-mh{color:#b9ca4a!important}.pl-mh .pl-en{color:#b9ca4a!important;font-weight:700!important}.pl-mi{color:tomato!important;font-style:italic!important}.pl-ml{color:tomato!important}.pl-mm{color:tomato!important}.pl-mo{color:tomato!important}.pl-mp{color:tomato!important}.pl-mq{color:#ff4500!important}.pl-mr{color:tomato!important}.pl-ms{color:tomato!important}.pl-pds{color:#b9ca4a!important}.pl-s{color:tomato!important}.pl-s1{color:#b9ca4a!important}.pl-s1 .pl-pse .pl-s2{color:#e78c45!important}.pl-s1 .pl-s2{color:#7aa6da!important}.pl-s1 .pl-v{color:tomato!important}.pl-s3{color:#d54e53!important}.pl-sc{color:#dedede!important}.pl-smi{color:#7aa6da!important}.pl-smp{color:#7aa6da!important}.pl-sr{color:#d54e53!important}.pl-sr .pl-cce{color:#b9ca4a!important}.pl-sr .pl-sra{color:#d54e53!important}.pl-sr .pl-sre{color:#d54e53!important}.pl-src{color:#d54e53!important}.pl-st{color:tomato!important}.pl-stj{color:#7aa6da!important}.pl-sv{color:#e78c45!important}.pl-v{color:#d54e53!important}.pl-vo{color:#7aa6da!important}.pl-vpf{color:#e78c45!important}.pl-mi1{color:#dedede!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#dedede!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#dedede!important;background:red!important}.pl-mdhf{color:#dedede!important;background:red!important}.pl-id{color:#ced2cf!important;background:#b798bf!important}.pl-ii{color:#ff0!important;background:red!important}.highlight-source-css .pl-k{color:#dedede!important}.highlight-source-css .pl-s3{color:#e7c547!important}.highlight-source-css .pl-sc{color:#e7c547!important}.highlight-source-css .pl-ent{color:#dedede!important}.highlight-text-html-basic .pl-ent{color:#d54e53!important}.highlight-source-js .pl-k{color:#ff1493!important}.highlight-text-html-php .pl-s3{color:#7aa6da!important}.highlight-text-html-php .pl-vo{color:#d54e53!important}.highlight-source-python .pl-s3{color:#7aa6da!important} 2 | -------------------------------------------------------------------------------- /themes/tomorrow-night-blue.min.css: -------------------------------------------------------------------------------- 1 | /*! GitHub: Tomorrow Night Blue */.CodeMirror, .highlight{background-color:#002451!important;color:#fff!important}.blob-code, .blob-code-inner{color:#fff!important}.pl-c, .pl-c span{color:#969896!important;font-style:italic!important}.pl-c1{color:#de935f!important}.pl-cce{color:#de935f!important}.pl-cn{color:#de935f!important}.pl-coc{color:#de935f!important}.pl-cos{color:#b5bd68!important}.pl-e{color:#f0c674!important}.pl-ef{color:#f0c674!important}.pl-en{color:#f0c674!important}.pl-enc{color:#de935f!important}.pl-enf{color:#f0c674!important}.pl-enm{color:#f0c674!important}.pl-ens{color:#de935f!important}.pl-ent{color:#b294bb!important}.pl-entc{color:#f0c674!important}.pl-enti{color:#f0c674!important;font-weight:700!important}.pl-entm{color:#c66!important}.pl-eoa{color:#b294bb!important}.pl-eoac{color:#c66!important}.pl-eoac .pl-pde{color:#c66!important}.pl-eoai{color:#b294bb!important}.pl-eoai .pl-pde{color:#b294bb!important}.pl-eoi{color:#f0c674!important}.pl-k{color:#b294bb!important}.pl-ko{color:#b294bb!important}.pl-kolp{color:#b294bb!important}.pl-kos{color:#de935f!important}.pl-kou{color:#de935f!important}.pl-mai .pl-sf{color:#c66!important}.pl-mb{color:#b5bd68!important;font-weight:700!important}.pl-mc{color:#b294bb!important}.pl-mh .pl-pdh{color:#de935f!important}.pl-mi{color:#b294bb!important;font-style:italic!important}.pl-ml{color:#b5bd68!important}.pl-mm{color:#c66!important}.pl-mp{color:#81a2be!important}.pl-mp1 .pl-sf{color:#81a2be!important}.pl-mq{color:#de935f!important}.pl-mr{color:#b294bb!important}.pl-ms{color:#b294bb!important}.pl-pdb{color:#b5bd68!important;font-weight:700!important}.pl-pdc{color:#969896!important;font-style:italic!important}.pl-pdc1{color:#de935f!important}.pl-pde{color:#de935f!important}.pl-pdi{color:#b294bb!important;font-style:italic!important}.pl-pds{color:#b5bd68!important}.pl-pdv{color:#c66!important}.pl-pse{color:#de935f!important}.pl-pse .pl-s2{color:#de935f!important}.pl-s{color:#b294bb!important}.pl-s1{color:#b5bd68!important}.pl-s2{color:#c5c8c6!important}.pl-mp .pl-s3{color:#b294bb!important}.pl-s3{color:#81a2be!important}.pl-sc{color:#c5c8c6!important}.pl-scp{color:#de935f!important}.pl-sf{color:#dad085!important}.pl-smc{color:#f0c674!important}.pl-smi{color:#c5c8c6!important}.pl-smp{color:#c5c8c6!important}.pl-sok{color:#b294bb!important}.pl-sol{color:#b5bd68!important}.pl-som{color:#c66!important}.pl-sr{color:#c66!important}.pl-sra{color:#b294bb!important}.pl-src{color:#b294bb!important}.pl-sre{color:#b294bb!important}.pl-st{color:#b294bb!important}.pl-stj{color:#c5c8c6!important}.pl-stp{color:#de935f!important}.pl-sv{color:#de935f!important}.pl-v{color:#de935f!important}.pl-vi{color:#de935f!important}.pl-vo{color:#c66!important}.pl-vpf{color:#de935f!important}.pl-mi1{color:#8f9d6a!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#8f9d6a!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#c66!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#c66!important;background:rgba(64,0,0,.5)!important}.pl-mdr{color:#de935f!important;font-weight:400!important}.pl-mdh{color:#c66!important;font-weight:400!important}.pl-mdi{color:#c66!important;font-weight:400!important}.pl-ib{background-color:#c66!important}.pl-id{background-color:#c66!important;color:#fff!important}.pl-ii, .pl-ii .pl-cce{background-color:#c66!important;color:#fff!important}.pl-iu{background-color:#c66!important}.pl-mo{color:#c5c8c6!important}.pl-mri{color:#de935f!important}.pl-ms1{background-color:#c5c8c6!important}.pl-va{color:#de935f!important}.pl-vpu{color:#de935f!important}.pl-entl{color:#c5c8c6!important} 2 | -------------------------------------------------------------------------------- /themes/tomorrow-night-bright.min.css: -------------------------------------------------------------------------------- 1 | /*! GitHub: Tomorrow Night Bright */.CodeMirror, .highlight{background-color:#000!important;color:#dedede!important}.blob-code, .blob-code-inner{color:#dedede!important}.pl-c, .pl-c span{color:#969896!important;font-style:italic!important}.pl-c1{color:#de935f!important}.pl-cce{color:#de935f!important}.pl-cn{color:#de935f!important}.pl-coc{color:#de935f!important}.pl-cos{color:#b5bd68!important}.pl-e{color:#f0c674!important}.pl-ef{color:#f0c674!important}.pl-en{color:#f0c674!important}.pl-enc{color:#de935f!important}.pl-enf{color:#f0c674!important}.pl-enm{color:#f0c674!important}.pl-ens{color:#de935f!important}.pl-ent{color:#b294bb!important}.pl-entc{color:#f0c674!important}.pl-enti{color:#f0c674!important;font-weight:700!important}.pl-entm{color:#c66!important}.pl-eoa{color:#b294bb!important}.pl-eoac{color:#c66!important}.pl-eoac .pl-pde{color:#c66!important}.pl-eoai{color:#b294bb!important}.pl-eoai .pl-pde{color:#b294bb!important}.pl-eoi{color:#f0c674!important}.pl-k{color:#b294bb!important}.pl-ko{color:#b294bb!important}.pl-kolp{color:#b294bb!important}.pl-kos{color:#de935f!important}.pl-kou{color:#de935f!important}.pl-mai .pl-sf{color:#c66!important}.pl-mb{color:#b5bd68!important;font-weight:700!important}.pl-mc{color:#b294bb!important}.pl-mh .pl-pdh{color:#de935f!important}.pl-mi{color:#b294bb!important;font-style:italic!important}.pl-ml{color:#b5bd68!important}.pl-mm{color:#c66!important}.pl-mp{color:#81a2be!important}.pl-mp1 .pl-sf{color:#81a2be!important}.pl-mq{color:#de935f!important}.pl-mr{color:#b294bb!important}.pl-ms{color:#b294bb!important}.pl-pdb{color:#b5bd68!important;font-weight:700!important}.pl-pdc{color:#969896!important;font-style:italic!important}.pl-pdc1{color:#de935f!important}.pl-pde{color:#de935f!important}.pl-pdi{color:#b294bb!important;font-style:italic!important}.pl-pds{color:#b5bd68!important}.pl-pdv{color:#c66!important}.pl-pse{color:#de935f!important}.pl-pse .pl-s2{color:#de935f!important}.pl-s{color:#b294bb!important}.pl-s1{color:#b5bd68!important}.pl-s2{color:#c5c8c6!important}.pl-mp .pl-s3{color:#b294bb!important}.pl-s3{color:#81a2be!important}.pl-sc{color:#c5c8c6!important}.pl-scp{color:#de935f!important}.pl-sf{color:#dad085!important}.pl-smc{color:#f0c674!important}.pl-smi{color:#c5c8c6!important}.pl-smp{color:#c5c8c6!important}.pl-sok{color:#b294bb!important}.pl-sol{color:#b5bd68!important}.pl-som{color:#c66!important}.pl-sr{color:#c66!important}.pl-sra{color:#b294bb!important}.pl-src{color:#b294bb!important}.pl-sre{color:#b294bb!important}.pl-st{color:#b294bb!important}.pl-stj{color:#c5c8c6!important}.pl-stp{color:#de935f!important}.pl-sv{color:#de935f!important}.pl-v{color:#de935f!important}.pl-vi{color:#de935f!important}.pl-vo{color:#c66!important}.pl-vpf{color:#de935f!important}.pl-mi1{color:#8f9d6a!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#8f9d6a!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#c66!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#c66!important;background:rgba(64,0,0,.5)!important}.pl-mdr{color:#de935f!important;font-weight:400!important}.pl-mdh{color:#c66!important;font-weight:400!important}.pl-mdi{color:#c66!important;font-weight:400!important}.pl-ib{background-color:#c66!important}.pl-id{background-color:#c66!important;color:#fff!important}.pl-ii, .pl-ii .pl-cce{background-color:#c66!important;color:#fff!important}.pl-iu{background-color:#c66!important}.pl-mo{color:#c5c8c6!important}.pl-mri{color:#de935f!important}.pl-ms1{background-color:#c5c8c6!important}.pl-va{color:#de935f!important}.pl-vpu{color:#de935f!important}.pl-entl{color:#c5c8c6!important} 2 | -------------------------------------------------------------------------------- /themes/tomorrow-night-eighties.min.css: -------------------------------------------------------------------------------- 1 | /*! GitHub: Tomorrow Night Eighties */.CodeMirror, .highlight{background-color:#000!important;color:#ccc!important}.blob-code, .blob-code-inner{color:#ccc!important}.pl-c, .pl-c span{color:#969896!important;font-style:italic!important}.pl-c1{color:#de935f!important}.pl-cce{color:#de935f!important}.pl-cn{color:#de935f!important}.pl-coc{color:#de935f!important}.pl-cos{color:#b5bd68!important}.pl-e{color:#f0c674!important}.pl-ef{color:#f0c674!important}.pl-en{color:#f0c674!important}.pl-enc{color:#de935f!important}.pl-enf{color:#f0c674!important}.pl-enm{color:#f0c674!important}.pl-ens{color:#de935f!important}.pl-ent{color:#b294bb!important}.pl-entc{color:#f0c674!important}.pl-enti{color:#f0c674!important;font-weight:700!important}.pl-entm{color:#c66!important}.pl-eoa{color:#b294bb!important}.pl-eoac{color:#c66!important}.pl-eoac .pl-pde{color:#c66!important}.pl-eoai{color:#b294bb!important}.pl-eoai .pl-pde{color:#b294bb!important}.pl-eoi{color:#f0c674!important}.pl-k{color:#b294bb!important}.pl-ko{color:#b294bb!important}.pl-kolp{color:#b294bb!important}.pl-kos{color:#de935f!important}.pl-kou{color:#de935f!important}.pl-mai .pl-sf{color:#c66!important}.pl-mb{color:#b5bd68!important;font-weight:700!important}.pl-mc{color:#b294bb!important}.pl-mh .pl-pdh{color:#de935f!important}.pl-mi{color:#b294bb!important;font-style:italic!important}.pl-ml{color:#b5bd68!important}.pl-mm{color:#c66!important}.pl-mp{color:#81a2be!important}.pl-mp1 .pl-sf{color:#81a2be!important}.pl-mq{color:#de935f!important}.pl-mr{color:#b294bb!important}.pl-ms{color:#b294bb!important}.pl-pdb{color:#b5bd68!important;font-weight:700!important}.pl-pdc{color:#969896!important;font-style:italic!important}.pl-pdc1{color:#de935f!important}.pl-pde{color:#de935f!important}.pl-pdi{color:#b294bb!important;font-style:italic!important}.pl-pds{color:#b5bd68!important}.pl-pdv{color:#c66!important}.pl-pse{color:#de935f!important}.pl-pse .pl-s2{color:#de935f!important}.pl-s{color:#b294bb!important}.pl-s1{color:#b5bd68!important}.pl-s2{color:#c5c8c6!important}.pl-mp .pl-s3{color:#b294bb!important}.pl-s3{color:#81a2be!important}.pl-sc{color:#c5c8c6!important}.pl-scp{color:#de935f!important}.pl-sf{color:#dad085!important}.pl-smc{color:#f0c674!important}.pl-smi{color:#c5c8c6!important}.pl-smp{color:#c5c8c6!important}.pl-sok{color:#b294bb!important}.pl-sol{color:#b5bd68!important}.pl-som{color:#c66!important}.pl-sr{color:#c66!important}.pl-sra{color:#b294bb!important}.pl-src{color:#b294bb!important}.pl-sre{color:#b294bb!important}.pl-st{color:#b294bb!important}.pl-stj{color:#c5c8c6!important}.pl-stp{color:#de935f!important}.pl-sv{color:#de935f!important}.pl-v{color:#de935f!important}.pl-vi{color:#de935f!important}.pl-vo{color:#c66!important}.pl-vpf{color:#de935f!important}.pl-mi1{color:#8f9d6a!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#8f9d6a!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#c66!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#c66!important;background:rgba(64,0,0,.5)!important}.pl-mdr{color:#de935f!important;font-weight:400!important}.pl-mdh{color:#c66!important;font-weight:400!important}.pl-mdi{color:#c66!important;font-weight:400!important}.pl-ib{background-color:#c66!important}.pl-id{background-color:#c66!important;color:#fff!important}.pl-ii, .pl-ii .pl-cce{background-color:#c66!important;color:#fff!important}.pl-iu{background-color:#c66!important}.pl-mo{color:#c5c8c6!important}.pl-mri{color:#de935f!important}.pl-ms1{background-color:#c5c8c6!important}.pl-va{color:#de935f!important}.pl-vpu{color:#de935f!important}.pl-entl{color:#c5c8c6!important} 2 | -------------------------------------------------------------------------------- /themes/tomorrow-night.min.css: -------------------------------------------------------------------------------- 1 | /*! GitHub: Tomorrow Night */.CodeMirror, .highlight{background-color:#1d1f21!important;color:#c5c8c6!important}.blob-code, .blob-code-inner{color:#c5c8c6!important}.pl-c, .pl-c span{color:#969896!important;font-style:italic!important}.pl-c1{color:#de935f!important}.pl-cce{color:#de935f!important}.pl-cn{color:#de935f!important}.pl-coc{color:#de935f!important}.pl-cos{color:#b5bd68!important}.pl-e{color:#f0c674!important}.pl-ef{color:#f0c674!important}.pl-en{color:#f0c674!important}.pl-enc{color:#de935f!important}.pl-enf{color:#f0c674!important}.pl-enm{color:#f0c674!important}.pl-ens{color:#de935f!important}.pl-ent{color:#b294bb!important}.pl-entc{color:#f0c674!important}.pl-enti{color:#f0c674!important;font-weight:700!important}.pl-entm{color:#c66!important}.pl-eoa{color:#b294bb!important}.pl-eoac{color:#c66!important}.pl-eoac .pl-pde{color:#c66!important}.pl-eoai{color:#b294bb!important}.pl-eoai .pl-pde{color:#b294bb!important}.pl-eoi{color:#f0c674!important}.pl-k{color:#b294bb!important}.pl-ko{color:#b294bb!important}.pl-kolp{color:#b294bb!important}.pl-kos{color:#de935f!important}.pl-kou{color:#de935f!important}.pl-mai .pl-sf{color:#c66!important}.pl-mb{color:#b5bd68!important;font-weight:700!important}.pl-mc{color:#b294bb!important}.pl-mh .pl-pdh{color:#de935f!important}.pl-mi{color:#b294bb!important;font-style:italic!important}.pl-ml{color:#b5bd68!important}.pl-mm{color:#c66!important}.pl-mp{color:#81a2be!important}.pl-mp1 .pl-sf{color:#81a2be!important}.pl-mq{color:#de935f!important}.pl-mr{color:#b294bb!important}.pl-ms{color:#b294bb!important}.pl-pdb{color:#b5bd68!important;font-weight:700!important}.pl-pdc{color:#969896!important;font-style:italic!important}.pl-pdc1{color:#de935f!important}.pl-pde{color:#de935f!important}.pl-pdi{color:#b294bb!important;font-style:italic!important}.pl-pds{color:#b5bd68!important}.pl-pdv{color:#c66!important}.pl-pse{color:#de935f!important}.pl-pse .pl-s2{color:#de935f!important}.pl-s{color:#b294bb!important}.pl-s1{color:#b5bd68!important}.pl-s2{color:#c5c8c6!important}.pl-mp .pl-s3{color:#b294bb!important}.pl-s3{color:#81a2be!important}.pl-sc{color:#c5c8c6!important}.pl-scp{color:#de935f!important}.pl-sf{color:#dad085!important}.pl-smc{color:#f0c674!important}.pl-smi{color:#c5c8c6!important}.pl-smp{color:#c5c8c6!important}.pl-sok{color:#b294bb!important}.pl-sol{color:#b5bd68!important}.pl-som{color:#c66!important}.pl-sr{color:#c66!important}.pl-sra{color:#b294bb!important}.pl-src{color:#b294bb!important}.pl-sre{color:#b294bb!important}.pl-st{color:#b294bb!important}.pl-stj{color:#c5c8c6!important}.pl-stp{color:#de935f!important}.pl-sv{color:#de935f!important}.pl-v{color:#de935f!important}.pl-vi{color:#de935f!important}.pl-vo{color:#c66!important}.pl-vpf{color:#de935f!important}.pl-mi1{color:#8f9d6a!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#8f9d6a!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#c66!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#c66!important;background:rgba(64,0,0,.5)!important}.pl-mdr{color:#de935f!important;font-weight:400!important}.pl-mdh{color:#c66!important;font-weight:400!important}.pl-mdi{color:#c66!important;font-weight:400!important}.pl-ib{background-color:#c66!important}.pl-id{background-color:#c66!important;color:#fff!important}.pl-ii, .pl-ii .pl-cce{background-color:#c66!important;color:#fff!important}.pl-iu{background-color:#c66!important}.pl-mo{color:#c5c8c6!important}.pl-mri{color:#de935f!important}.pl-ms1{background-color:#c5c8c6!important}.pl-va{color:#de935f!important}.pl-vpu{color:#de935f!important}.pl-entl{color:#c5c8c6!important} 2 | -------------------------------------------------------------------------------- /themes/twilight.min.css: -------------------------------------------------------------------------------- 1 | /*! GitHub: Twilight */.CodeMirror, .highlight{background:#141414!important;color:#ccc!important}.blob-code, .blob-code-inner{color:#ccc!important}.pl-c, .pl-c span{color:#5f5a60!important;font-style:italic!important}.pl-c1{color:#cf6a4c!important}.pl-cce{color:#cf6a4c!important;font-weight:400!important}.pl-cn{color:#cf6a4c!important}.pl-coc{color:#cf6a4c!important}.pl-cos{color:#8f9d6a!important}.pl-e{color:#ac885b!important}.pl-ef{color:#ac885b!important}.pl-en{color:#ac885b!important}.pl-enc{color:#cf6a4c!important}.pl-enf{color:#ac885b!important}.pl-enm{color:#ac885b!important}.pl-ens{color:#cf6a4c!important}.pl-ent{color:#cda869!important}.pl-entc{color:#ac885b!important}.pl-enti{color:#ac885b!important;font-weight:700!important}.pl-entm{color:#7587a6!important}.pl-eoa{color:#cda869!important}.pl-eoac{color:#7587a6!important}.pl-eoac .pl-pde{color:#7587a6!important}.pl-eoai{color:#cda869!important}.pl-eoai .pl-pde{color:#cda869!important}.pl-eoi{color:#ac885b!important}.pl-k{color:#cda869!important}.pl-ko{color:#cda869!important}.pl-kolp{color:#cda869!important}.pl-kos{color:#cf6a4c!important}.pl-kou{color:#cf6a4c!important}.pl-mai .pl-sf{color:#7587a6!important}.pl-mb{color:#8f9d6a!important;font-weight:700!important}.pl-mc{color:#cda869!important}.pl-mh{color:#cf6a4c!important;font-weight:400!important}.pl-mh .pl-pdh{color:#cf6a4c!important}.pl-mi{color:#cda869!important;font-style:italic!important}.pl-ml{color:#8f9d6a!important}.pl-mm{color:#7587a6!important}.pl-mp{color:#c5af75!important}.pl-mp1 .pl-sf{color:#dad085!important}.pl-mq{color:#cf6a4c!important}.pl-mr{color:#cda869!important}.pl-ms{color:#cda869!important}.pl-pdb{color:#8f9d6a!important;font-weight:700!important}.pl-pdc{color:#5f5a60!important;font-style:italic!important}.pl-pdc1{color:#cf6a4c!important}.pl-pde{color:#cf6a4c!important}.pl-pdi{color:#cda869!important;font-style:italic!important}.pl-pds{color:#8f9d6a!important}.pl-pdv{color:#7587a6!important}.pl-pse{color:#cf6a4c!important}.pl-pse .pl-s2{color:#cf6a4c!important}.pl-s{color:#f9ee98!important}.pl-s1{color:#8f9d6a!important}.pl-s2{color:#ccc!important}.pl-mp .pl-s3{color:#cda869!important}.pl-s3{color:#dad085!important}.pl-sc{color:#dad085!important}.pl-scp{color:#cf6a4c!important}.pl-sf{color:#dad085!important}.pl-smc{color:#ac885b!important}.pl-smi{color:#ccc!important}.pl-smp{color:#ccc!important}.pl-sok{color:#cda869!important}.pl-sol{color:#8f9d6a!important}.pl-som{color:#7587a6!important}.pl-sr{color:#7587a6!important}.pl-sra{color:#cda869!important}.pl-src{color:#cda869!important}.pl-sre{color:#cda869!important}.pl-st{color:#cda869!important}.pl-stj{color:#7587a6!important}.pl-stp{color:#9b859d!important}.pl-sv{color:#9b859d!important}.pl-v{color:#9b859d!important}.pl-vi{color:#cf6a4c!important}.pl-vo{color:#ac885b!important}.pl-vpf{color:#7587a6!important}.pl-mi1{color:#55a532!important;background:#020!important}.pl-mdht{color:#55a532!important;background:#020!important}.pl-md{color:#bd2c00!important;background:#200!important}.pl-mdhf{color:#bd2c00!important;background:#200!important}.pl-mdr{color:#cf6a4c!important;font-weight:400!important}.pl-mdh{color:#7587a6!important;font-weight:400!important}.pl-mdi{color:#7587a6!important;font-weight:400!important}.pl-ib{background-color:#f93!important}.pl-id{background-color:#a31515!important;color:#fff!important}.pl-ii, .pl-ii .pl-cce{background-color:#df5000!important;color:#fff!important}.pl-iu{background-color:#b4b7b4!important}.pl-mo{color:#969896!important}.pl-mri{color:teal!important}.pl-ms1{background-color:#f5f5f5!important}.pl-va{color:teal!important}.pl-vpu{color:teal!important}.pl-entl{color:#ccc!important} 2 | -------------------------------------------------------------------------------- /themes/vibrant-ink.min.css: -------------------------------------------------------------------------------- 1 | /*! GitHub: Vibrant Ink */.CodeMirror, .highlight{background-color:#0f0f0f!important;color:#fff!important}.blob-code, .blob-code-inner{color:#fff!important}.pl-c, .pl-c span{color:#93c!important;font-style:italic!important}.pl-c1{color:#399!important}.pl-e{color:#f60!important}.pl-en{color:#fff!important}.pl-ent{color:#fc0!important}.pl-k{color:#f60!important}.pl-mb{color:#6f0!important;font-weight:700!important}.pl-mdh{color:#f60!important}.pl-mdr{color:#f60!important}.pl-mh{color:#9c9!important}.pl-mh .pl-en{color:#9c9!important;font-weight:700!important}.pl-mi{color:#f60!important;font-style:italic!important}.pl-ml{color:#f60!important}.pl-mm{color:#f60!important}.pl-mo{color:#f60!important}.pl-mp{color:#f60!important}.pl-mq{color:#93c!important}.pl-mr{color:#f60!important}.pl-ms{color:#f60!important}.pl-pds{color:#6f0!important}.pl-s{color:#fc0!important}.pl-s1{color:#6f0!important}.pl-s1 .pl-pse .pl-s2{color:#6f0!important}.pl-s1 .pl-s2{color:#399!important}.pl-s1 .pl-v{color:#f60!important}.pl-s3{color:#fc0!important}.pl-sc{color:#fff!important}.pl-smi{color:#399!important}.pl-smp{color:#399!important}.pl-sr{color:#44b4cc!important}.pl-sr .pl-cce{color:#9c9!important}.pl-sr .pl-sra{color:#44b4cc!important}.pl-sr .pl-sre{color:#44b4cc!important}.pl-src{color:#6f0!important}.pl-st{color:#f60!important}.pl-stj{color:#399!important}.pl-sv{color:#6f0!important}.pl-v{color:#fc0!important}.pl-vo{color:#399!important}.pl-vpf{color:#fff!important}.pl-mi1{color:#fff!important;background:rgba(0,64,0,.5)!important}.pl-mdht{color:#fff!important;background:rgba(0,64,0,.5)!important}.pl-md{color:#fff!important;background:rgba(64,0,0,.5)!important}.pl-mdhf{color:#fff!important;background:rgba(64,0,0,.5)!important}.pl-id{color:#cf3!important;background:#000!important}.pl-ii{color:#cf3!important;background:#000!important}.highlight-source-css .pl-c1{color:#9c9!important}.highlight-source-css .pl-ent{color:#399!important}.highlight-source-css .pl-s3{color:#fff!important}.highlight-source-css .pl-sc{color:#399!important}.highlight-text-html-basic .pl-ent{color:#f60!important}.highlight-text-html-basic .pl-e{color:#9c9!important}.highlight-source-js .pl-vpf{color:#fc0!important}.highlight-text-html-php .pl-s{color:#f60!important}.highlight-text-html-php .pl-s3{color:#f60!important}.highlight-text-html-php .pl-vo{color:#fc0!important}.highlight-source-c\+\+ .pl-s3{color:#fff!important} 2 | -------------------------------------------------------------------------------- /tools/add-themes.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | "use strict"; 3 | 4 | const fs = require("fs").promises; 5 | const path = require("path"); 6 | const defaults = require("../defaults.json"); 7 | 8 | const {exit} = require("./utils"); 9 | 10 | async function getThemesInFolder() { 11 | const themes = path.join(__dirname, "..", "themes"); 12 | let files = await fs.readdir(themes); 13 | 14 | // put the default theme (twilight) first 15 | files = files.sort((a, b) => { 16 | if (/twilight/i.exec(a)) return -1; 17 | if (/twilight/i.exec(b)) return 1; 18 | return a.localeCompare(b); 19 | }); 20 | 21 | return await Promise.all(files.map(file => fs.readFile(`${themes}/${file}`, "utf8"))); 22 | } 23 | 24 | function extractThemeName(css) { 25 | return css 26 | .substring(3, css.indexOf("*/")) 27 | .trim() 28 | // remove group (e.g. "GitHub: ") 29 | .replace(/^.+:\s/, ""); 30 | } 31 | 32 | // Prevent comments in theme from breaking out of the meta data block 33 | function escapeSlash(css) { 34 | // "/* test */" => "/* test *\/" 35 | return css.replace(/\*\//g, "*\\/"); 36 | } 37 | 38 | function updateDefaults(themes) { 39 | const val = defaults.variables["Github syntax theme"].value = {}; 40 | themes.forEach(theme => val[extractThemeName(theme)] = escapeSlash(theme)); 41 | return JSON.stringify(defaults, null, 2); 42 | } 43 | 44 | getThemesInFolder() 45 | .then(themes => fs.writeFile(path.join(__dirname, "..", "defaults.json"), updateDefaults(themes))) 46 | .then(() => console.info("\u001B[32m%s\u001B[0m", "Themes updated in defaults.json")) 47 | .catch(exit); 48 | -------------------------------------------------------------------------------- /tools/authors: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # generate AUTHORS, modify .mailmap in case of duplicates 4 | git log --reverse --format='%aN <%aE>' | perl -we ' 5 | BEGIN { 6 | %seen = (), @authors = (); 7 | } 8 | while (<>) { 9 | next if $seen{$_}; 10 | $seen{$_} = push @authors, $_; 11 | } 12 | END { 13 | print "# Authors ordered by first contribution.\n"; 14 | print "\n", @authors, "\n"; 15 | print "# Generated by tools/authors.sh\n"; 16 | } 17 | ' > "${BASH_SOURCE%/*}/../AUTHORS" 18 | -------------------------------------------------------------------------------- /tools/clean.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | "use strict"; 3 | 4 | const fs = require("fs").promises; 5 | const path = require("path"); 6 | const pkg = require("../package.json"); 7 | 8 | const fileName = path.join(__dirname, "..", pkg.main); 9 | 10 | function cleanup(css) { 11 | return css 12 | // Perfectionist adds comments to the end of the previous line... 13 | // }/* comment */ => }\n\n /* comment */ 14 | .replace(/}\/\*(([\s\S])+?)\*\/\s*/g, "}\n\n /*$1*/\n ") 15 | .replace(/,\s\/\*/g, ",\n /*") 16 | // Remove leading whitespace from @-moz-document entries 17 | .replace(/\n\s{15}/g, "\n") 18 | // Remove extra carriage returns between definitions 19 | .replace(/\n+/g, "\n"); 20 | } 21 | 22 | async function postPerfectionist() { 23 | const css = await fs.readFile(fileName, "utf8"); 24 | await fs.writeFile(fileName, cleanup(css)); 25 | console.info("\u001B[32m%s\u001B[0m", `${pkg.title} usercss cleanup completed`); 26 | } 27 | 28 | postPerfectionist(); 29 | -------------------------------------------------------------------------------- /tools/update-usercss.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | "use strict"; 3 | 4 | const fs = require("fs").promises; 5 | const path = require("path"); 6 | 7 | const {replaceHolders, exit} = require("./utils"); 8 | const pkg = require("../package.json"); 9 | 10 | const files = { 11 | defaults: path.join(__dirname, "..", "defaults.json"), 12 | usercss: path.join(__dirname, "..", pkg.main), 13 | template: path.join(__dirname, "usercss-template.css"), 14 | }; 15 | 16 | const defaults = require(files.defaults); 17 | 18 | function addVars(template, usercss) { 19 | const vars = defaults.variables; 20 | const keys = Object.keys(vars); 21 | const variables = keys.map((key) => { 22 | const e = vars[key]; 23 | const v = e.type !== "dropdown" ? 24 | e.value : 25 | `{\n ${Object.keys(e.value) 26 | .map(o => `${o} "${o}" << 43 | fs 44 | .readFile(files.usercss, "utf8") 45 | .then(usercss => addVars(template, usercss)) 46 | ) 47 | .then(css => fs.writeFile(files.usercss, css)) 48 | .then(() => console.info("\u001B[32m%s\u001B[0m", `${pkg.title} usercss update complete`)) 49 | .catch(exit); 50 | -------------------------------------------------------------------------------- /tools/usercss-template.css: -------------------------------------------------------------------------------- 1 | /* ==UserStyle== 2 | @name {{title}} 3 | @version {{version}} 4 | @description {{description}} 5 | @namespace StylishThemes 6 | @author StylishThemes 7 | @homepageURL https://github.com/{{repository}} 8 | @supportURL https://github.com/{{repository}}/issues 9 | @updateURL https://raw.githubusercontent.com/{{repository}}/master/{{main}} 10 | @license CC-BY-SA-4.0 11 | {{variables}} 12 | @preprocessor {{preprocessor}} 13 | ==/UserStyle== */ 14 | -------------------------------------------------------------------------------- /tools/utils.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | "use strict"; 3 | 4 | // Replace placeholders in template 5 | function replaceHolders(pkg, css) { 6 | const placeholders = css.match(/\{\{\S+?\}\}/g); 7 | const domain = "https://github.com/"; 8 | if (placeholders) { 9 | new Set(placeholders).forEach((name) => { 10 | let val = (pkg[name.replace(/[{}]/g, "")] || name); 11 | if (val.includes(domain)) { 12 | val = val.substring(domain.length, val.length); 13 | } 14 | css = css.replace(new RegExp(escapeRegex(name), "gi"), val); 15 | }); 16 | } 17 | return css; 18 | } 19 | 20 | function escapeRegex(str) { 21 | return str.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); 22 | } 23 | 24 | function maxSize(array) { 25 | return array.reduce((acc, item) => Math.max(acc, item.length), 0); 26 | } 27 | 28 | function pad(len, str) { 29 | return (str || "").padEnd(len); 30 | } 31 | 32 | function exit(err) { 33 | if (err) console.error(err); 34 | process.exit(err ? 1 : 0); 35 | } 36 | 37 | module.exports = { 38 | replaceHolders, 39 | escapeRegex, 40 | maxSize, 41 | pad, 42 | exit, 43 | }; 44 | --------------------------------------------------------------------------------