├── .github ├── issue_template.md └── pull_request_template.md ├── .gitignore ├── Dracula.bbColorScheme ├── INSTALL.md ├── LICENSE ├── README.md └── screenshot.png /.github/issue_template.md: -------------------------------------------------------------------------------- 1 | > If you're reporting an UI issue, make sure you take a screenshot that shows the actual bug. -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | > If you're fixing a UI issue, make sure you take two screenshots. One that shows the actual bug and another that shows how you fixed it. -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | jquery.github.js 2 | -------------------------------------------------------------------------------- /Dracula.bbColorScheme: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BBEditDocumentType 6 | ColorScheme 7 | BackgroundColor 8 | hsla(0.651, 0.291, 0.161, 1.000) 9 | ColorSchemeFormatVersion 10 | 3 11 | DifferenceHighlightColor 12 | hsla(0.351, 0.540, 0.511, 1.000) 13 | HighlightInsertionPoint 14 | 15 | InsertionPointLineHighlightColor 16 | hsla(0.670, 0.270, 0.230, 1.000) 17 | InvisibleOthersColor 18 | hsla(0.990, 0.771, 1.000, 1.000) 19 | InvisibleSpacesColor 20 | hsla(0.000, 0.000, 0.711, 1.000) 21 | PrimaryHighlightColor 22 | hsla(0.660, 0.280, 0.511, 1.000) 23 | SecondaryHighlightColor 24 | hsla(0.660, 0.161, 0.430, 1.000) 25 | SpellingColor 26 | hsla(0.910, 0.631, 1.000, 1.000) 27 | UseCustomHighlightColor 28 | 29 | com.barebones.bblm.JavaScript.regexp 30 | hsla(0.901, 0.632, 0.990, 1.000) 31 | com.barebones.bblm.Pyth.decorator 32 | hsla(0.531, 0.512, 0.990, 1.000) 33 | com.barebones.bblm.Pyth.triple-string 34 | hsla(0.901, 0.632, 0.990, 1.000) 35 | com.barebones.bblm.TeX.math-string 36 | hsla(0.990, 0.762, 0.990, 1.000) 37 | com.barebones.bblm.TeX.param-content 38 | hsla(0.531, 0.512, 0.990, 1.000) 39 | com.barebones.bblm.TeX.verbatim 40 | hsla(0.360, 0.720, 1.000, 1.000) 41 | com.barebones.bblm.code 42 | hsla(0.180, 0.022, 0.980, 1.000) 43 | com.barebones.bblm.comment 44 | hsla(0.642, 0.472, 0.582, 1.000) 45 | com.barebones.bblm.css.color-spec 46 | hsla(0.081, 0.942, 0.730, 1.000) 47 | com.barebones.bblm.file-include 48 | hsla(0.090, 0.582, 1.000, 1.000) 49 | com.barebones.bblm.grep.charclass 50 | hsla(0.901, 0.632, 0.990, 1.000) 51 | com.barebones.bblm.grep.escape-sequence 52 | hsla(0.740, 0.512, 0.970, 1.000) 53 | com.barebones.bblm.grep.metachar 54 | hsla(0.990, 0.762, 0.990, 1.000) 55 | com.barebones.bblm.grep.metasequence 56 | hsla(0.740, 0.512, 0.970, 1.000) 57 | com.barebones.bblm.grep.posix-name 58 | hsla(0.531, 0.512, 0.990, 1.000) 59 | com.barebones.bblm.grep.repeat 60 | hsla(0.360, 0.720, 1.000, 1.000) 61 | com.barebones.bblm.grep.repeat-data 62 | hsla(0.531, 0.512, 0.990, 1.000) 63 | com.barebones.bblm.heredoc-string 64 | hsla(0.180, 0.521, 0.990, 1.000) 65 | com.barebones.bblm.html.anchor 66 | hsla(0.990, 0.762, 0.990, 1.000) 67 | com.barebones.bblm.html.attribute-name 68 | hsla(0.081, 0.942, 0.730, 1.000) 69 | com.barebones.bblm.html.attribute-value 70 | hsla(0.990, 0.762, 0.990, 1.000) 71 | com.barebones.bblm.html.image 72 | hsla(0.360, 0.720, 1.000, 1.000) 73 | com.barebones.bblm.indexed-symbol 74 | hsla(0.740, 0.512, 0.970, 1.000) 75 | com.barebones.bblm.keyword 76 | hsla(0.540, 0.521, 1.000, 1.000) 77 | com.barebones.bblm.markdown.Emph 78 | hsla(0.990, 0.762, 0.990, 1.000) 79 | com.barebones.bblm.markdown.HorizontalRule 80 | hsla(0.000, 0.000, 0.421, 1.000) 81 | com.barebones.bblm.markdown.ImageAltText 82 | hsla(0.531, 0.512, 0.990, 1.000) 83 | com.barebones.bblm.markdown.ImageId 84 | hsla(0.531, 0.512, 0.990, 1.000) 85 | com.barebones.bblm.markdown.InlineCode 86 | hsla(0.531, 0.512, 0.990, 1.000) 87 | com.barebones.bblm.markdown.InlineLinkText 88 | hsla(0.531, 0.512, 0.990, 1.000) 89 | com.barebones.bblm.markdown.Keyword 90 | hsla(0.740, 0.512, 0.970, 1.000) 91 | com.barebones.bblm.markdown.LinkDefId 92 | hsla(0.901, 0.632, 0.990, 1.000) 93 | com.barebones.bblm.markdown.LinkDefTitle 94 | hsla(0.531, 0.512, 0.990, 1.000) 95 | com.barebones.bblm.markdown.LinkDefUrl 96 | hsla(0.990, 0.762, 0.990, 1.000) 97 | com.barebones.bblm.markdown.ListItemMarker 98 | hsla(0.990, 0.762, 0.990, 1.000) 99 | com.barebones.bblm.markdown.Pre 100 | hsla(0.531, 0.512, 0.990, 1.000) 101 | com.barebones.bblm.markdown.QuoteMarker 102 | hsla(0.901, 0.632, 0.990, 1.000) 103 | com.barebones.bblm.markdown.QuotedContent 104 | hsla(0.000, 0.000, 0.330, 1.000) 105 | com.barebones.bblm.number 106 | hsla(0.740, 0.512, 0.970, 1.000) 107 | com.barebones.bblm.perl.generic-string 108 | hsla(0.180, 0.521, 0.990, 1.000) 109 | com.barebones.bblm.perl.outer-pod 110 | hsla(0.090, 0.582, 1.000, 1.000) 111 | com.barebones.bblm.perl.pre-generic-string 112 | hsla(0.740, 0.512, 0.970, 1.000) 113 | com.barebones.bblm.predefined-symbol 114 | hsla(0.744, 0.512, 0.980, 1.000) 115 | com.barebones.bblm.preprocessor 116 | hsla(0.901, 0.632, 0.990, 1.000) 117 | com.barebones.bblm.ruby.regexp 118 | hsla(0.990, 0.762, 0.990, 1.000) 119 | com.barebones.bblm.ruby.symbol 120 | hsla(0.360, 0.720, 1.000, 1.000) 121 | com.barebones.bblm.sgml-cdata 122 | hsla(0.180, 0.521, 0.990, 1.000) 123 | com.barebones.bblm.sgml-decl 124 | hsla(0.090, 0.582, 1.000, 1.000) 125 | com.barebones.bblm.sgml-entity 126 | hsla(0.090, 0.582, 1.000, 1.000) 127 | com.barebones.bblm.sgml-tag 128 | hsla(0.531, 0.512, 0.990, 1.000) 129 | com.barebones.bblm.string 130 | hsla(0.192, 0.531, 1.000, 1.000) 131 | com.barebones.bblm.syntax-error 132 | hsla(0.990, 0.762, 0.990, 1.000) 133 | com.barebones.bblm.variable 134 | hsla(0.361, 0.725, 1.000, 1.000) 135 | com.barebones.bblm.verilog-hdl.comment-1 136 | hsla(0.990, 0.762, 0.990, 1.000) 137 | com.barebones.bblm.verilog-hdl.comment-2 138 | hsla(0.000, 0.000, 0.421, 1.000) 139 | com.barebones.bblm.verilog-hdl.comment-3 140 | hsla(0.360, 0.720, 1.000, 1.000) 141 | com.barebones.bblm.verilog-hdl.input-type 142 | hsla(0.901, 0.632, 0.990, 1.000) 143 | com.barebones.bblm.verilog-hdl.output-type 144 | hsla(0.901, 0.632, 0.990, 1.000) 145 | com.barebones.bblm.verilog-hdl.register-type 146 | hsla(0.990, 0.762, 0.990, 1.000) 147 | com.barebones.bblm.verilog-hdl.wire-type 148 | hsla(0.531, 0.512, 0.990, 1.000) 149 | com.barebones.bblm.vhdl.comment-1 150 | hsla(0.990, 0.762, 0.990, 1.000) 151 | com.barebones.bblm.vhdl.comment-2 152 | hsla(0.000, 0.000, 0.421, 1.000) 153 | com.barebones.bblm.vhdl.comment-3 154 | hsla(0.360, 0.720, 1.000, 1.000) 155 | com.barebones.bblm.xml-empty 156 | hsla(0.531, 0.512, 0.990, 1.000) 157 | com.barebones.bblm.xml-pi 158 | hsla(0.632, 0.460, 0.582, 1.000) 159 | 160 | 161 | -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- 1 | ### [BBEdit](http://www.barebones.com/products/bbedit/) 2 | 3 | #### Install using Git 4 | 5 | If you are a git user, you can install the theme and keep up to date by cloning the repo: 6 | 7 | git clone https://github.com/dracula/bbedit 8 | 9 | Then manually install the file from there. 10 | 11 | #### Install manually 12 | 13 | 1. Download using the [GitHub .zip download](https://github.com/dracula/bbedit/archive/master.zip) option 14 | 2. Unzip the files 15 | 3. Find your `Application Support/BBEdit/Color Schemes/` directory. 16 | * It is usually at `~/Library/Application Support/BBEdit/Color Schemes/` 17 | * If you explicitly set it up this way, it may be in your personal Dropbox or iCloud directory 18 | 4. Copy the file `Dracula.bbColorScheme` into the `Color Schemes` directory 19 | 20 | #### Activating theme 21 | 22 | Go to `Preferences` -> `Text Colors` and select `Dracula` from the `Color Scheme:` popup menu. 23 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2018 Dracula Theme for BBEdit 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Dracula for [BBEdit](http://www.barebones.com/products/bbedit/) 2 | 3 | > A dark theme for [BBEdit](http://www.barebones.com/products/bbedit/). 4 | 5 | ![Screenshot](./screenshot.png) 6 | 7 | ## Install 8 | 9 | All instructions can be found at [draculatheme.com/bbedit](https://draculatheme.com/bbedit). 10 | 11 | ## Team 12 | 13 | This theme is maintained by the following person(s) and a bunch of [awesome contributors](https://github.com/dracula/bbedit/graphs/contributors). 14 | 15 | | [![Pudge](https://avatars0.githubusercontent.com/u/15170?v=3&s=70)](https://github.com/pudge) | 16 | | --------------------------------------------------------------------------------------------- | 17 | | [Pudge](https://github.com/pudge) | 18 | 19 | ## Community 20 | 21 | - [Twitter](https://twitter.com/draculatheme) - Best for getting updates about themes and new stuff. 22 | - [GitHub](https://github.com/dracula/dracula-theme/discussions) - Best for asking questions and discussing issues. 23 | - [Discord](https://draculatheme.com/discord-invite) - Best for hanging out with the community. 24 | 25 | ## License 26 | 27 | [MIT License](./LICENSE) 28 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/bbedit/038d50d8ce01349012cf815bbef855a1793c4fea/screenshot.png --------------------------------------------------------------------------------