├── .all-contributorsrc ├── LICENSE ├── One Dark.itermcolors ├── README.md └── screenshots ├── import.png ├── main.png └── preset.png /.all-contributorsrc: -------------------------------------------------------------------------------- 1 | { 2 | "files": [ 3 | "README.md" 4 | ], 5 | "badgeTemplate": "[![All Contributors](https://img.shields.io/badge/all_contributors-<%= contributors.length %>-orange.svg)](#contributors)", 6 | "imageSize": 100, 7 | "commit": false, 8 | "contributors": [ 9 | { 10 | "login": "mskelton", 11 | "name": "Mark Skelton", 12 | "avatar_url": "https://avatars3.githubusercontent.com/u/25914066?v=4", 13 | "profile": "https://github.com/mskelton", 14 | "contributions": [ 15 | "design", 16 | "doc" 17 | ] 18 | }, 19 | { 20 | "login": "hijxf", 21 | "name": "Jef LeCompte", 22 | "avatar_url": "https://avatars1.githubusercontent.com/u/12074633?v=4", 23 | "profile": "https://jef.rocks", 24 | "contributions": [ 25 | "design" 26 | ] 27 | } 28 | ], 29 | "contributorsPerLine": 7, 30 | "projectName": "iterm-one-dark-theme", 31 | "projectOwner": "one-dark", 32 | "repoType": "github", 33 | "repoHost": "https://github.com", 34 | "skipCi": true 35 | } 36 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | ISC License 2 | 3 | Copyright (c) 2021, Mark Skelton 4 | 5 | Permission to use, copy, modify, and/or distribute this software for any 6 | purpose with or without fee is hereby granted, provided that the above 7 | copyright notice and this permission notice appear in all copies. 8 | 9 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 | -------------------------------------------------------------------------------- /One Dark.itermcolors: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Ansi 0 Color 6 | 7 | Alpha Component 8 | 1 9 | Blue Component 10 | 0.16862745583057404 11 | Color Space 12 | sRGB 13 | Green Component 14 | 0.14509804546833038 15 | Red Component 16 | 0.12941177189350128 17 | 18 | Ansi 1 Color 19 | 20 | Alpha Component 21 | 1 22 | Blue Component 23 | 0.45882353186607361 24 | Color Space 25 | sRGB 26 | Green Component 27 | 0.42352941632270813 28 | Red Component 29 | 0.87843137979507446 30 | 31 | Ansi 10 Color 32 | 33 | Alpha Component 34 | 1 35 | Blue Component 36 | 0.47450980544090271 37 | Color Space 38 | sRGB 39 | Green Component 40 | 0.76470589637756348 41 | Red Component 42 | 0.59607845544815063 43 | 44 | Ansi 11 Color 45 | 46 | Alpha Component 47 | 1 48 | Blue Component 49 | 0.48235294222831726 50 | Color Space 51 | sRGB 52 | Green Component 53 | 0.75294119119644165 54 | Red Component 55 | 0.89803922176361084 56 | 57 | Ansi 12 Color 58 | 59 | Alpha Component 60 | 1 61 | Blue Component 62 | 0.93725490570068359 63 | Color Space 64 | sRGB 65 | Green Component 66 | 0.68627452850341797 67 | Red Component 68 | 0.3803921639919281 69 | 70 | Ansi 13 Color 71 | 72 | Alpha Component 73 | 1 74 | Blue Component 75 | 0.86666667461395264 76 | Color Space 77 | sRGB 78 | Green Component 79 | 0.47058823704719543 80 | Red Component 81 | 0.7764706015586853 82 | 83 | Ansi 14 Color 84 | 85 | Alpha Component 86 | 1 87 | Blue Component 88 | 0.7607843279838562 89 | Color Space 90 | sRGB 91 | Green Component 92 | 0.7137255072593689 93 | Red Component 94 | 0.33725491166114807 95 | 96 | Ansi 15 Color 97 | 98 | Alpha Component 99 | 1 100 | Blue Component 101 | 0.74901962280273438 102 | Color Space 103 | sRGB 104 | Green Component 105 | 0.69803923368453979 106 | Red Component 107 | 0.67058825492858887 108 | 109 | Ansi 2 Color 110 | 111 | Alpha Component 112 | 1 113 | Blue Component 114 | 0.47450980544090271 115 | Color Space 116 | sRGB 117 | Green Component 118 | 0.76470589637756348 119 | Red Component 120 | 0.59607845544815063 121 | 122 | Ansi 3 Color 123 | 124 | Alpha Component 125 | 1 126 | Blue Component 127 | 0.48235294222831726 128 | Color Space 129 | sRGB 130 | Green Component 131 | 0.75294119119644165 132 | Red Component 133 | 0.89803922176361084 134 | 135 | Ansi 4 Color 136 | 137 | Alpha Component 138 | 1 139 | Blue Component 140 | 0.93725490570068359 141 | Color Space 142 | sRGB 143 | Green Component 144 | 0.68627452850341797 145 | Red Component 146 | 0.3803921639919281 147 | 148 | Ansi 5 Color 149 | 150 | Alpha Component 151 | 1 152 | Blue Component 153 | 0.86666667461395264 154 | Color Space 155 | sRGB 156 | Green Component 157 | 0.47058823704719543 158 | Red Component 159 | 0.7764706015586853 160 | 161 | Ansi 6 Color 162 | 163 | Alpha Component 164 | 1 165 | Blue Component 166 | 0.7607843279838562 167 | Color Space 168 | sRGB 169 | Green Component 170 | 0.7137255072593689 171 | Red Component 172 | 0.33725491166114807 173 | 174 | Ansi 7 Color 175 | 176 | Alpha Component 177 | 1 178 | Blue Component 179 | 0.74901962280273438 180 | Color Space 181 | sRGB 182 | Green Component 183 | 0.69803923368453979 184 | Red Component 185 | 0.67058825492858887 186 | 187 | Ansi 8 Color 188 | 189 | Alpha Component 190 | 1 191 | Blue Component 192 | 0.46274510025978088 193 | Color Space 194 | sRGB 195 | Green Component 196 | 0.46274510025978088 197 | Red Component 198 | 0.46274510025978088 199 | 200 | Ansi 9 Color 201 | 202 | Alpha Component 203 | 1 204 | Blue Component 205 | 0.45882353186607361 206 | Color Space 207 | sRGB 208 | Green Component 209 | 0.42352941632270813 210 | Red Component 211 | 0.87843137979507446 212 | 213 | Background Color 214 | 215 | Alpha Component 216 | 1 217 | Blue Component 218 | 0.16862745583057404 219 | Color Space 220 | sRGB 221 | Green Component 222 | 0.14509804546833038 223 | Red Component 224 | 0.12941177189350128 225 | 226 | Badge Color 227 | 228 | Alpha Component 229 | 0.5 230 | Blue Component 231 | 0.45882353186607361 232 | Color Space 233 | sRGB 234 | Green Component 235 | 0.42352941632270813 236 | Red Component 237 | 0.87843137979507446 238 | 239 | Bold Color 240 | 241 | Alpha Component 242 | 1 243 | Blue Component 244 | 0.74901962280273438 245 | Color Space 246 | sRGB 247 | Green Component 248 | 0.69803923368453979 249 | Red Component 250 | 0.67058825492858887 251 | 252 | Cursor Color 253 | 254 | Alpha Component 255 | 1 256 | Blue Component 257 | 0.74901962280273438 258 | Color Space 259 | sRGB 260 | Green Component 261 | 0.69803923368453979 262 | Red Component 263 | 0.67058825492858887 264 | 265 | Cursor Guide Color 266 | 267 | Alpha Component 268 | 0.17647058823529413 269 | Blue Component 270 | 0.74901962280273438 271 | Color Space 272 | sRGB 273 | Green Component 274 | 0.69803923368453979 275 | Red Component 276 | 0.67058825492858887 277 | 278 | Cursor Text Color 279 | 280 | Alpha Component 281 | 1 282 | Blue Component 283 | 0.74901962280273438 284 | Color Space 285 | sRGB 286 | Green Component 287 | 0.69803923368453979 288 | Red Component 289 | 0.67058825492858887 290 | 291 | Foreground Color 292 | 293 | Alpha Component 294 | 1 295 | Blue Component 296 | 0.74901962280273438 297 | Color Space 298 | sRGB 299 | Green Component 300 | 0.69803923368453979 301 | Red Component 302 | 0.67058825492858887 303 | 304 | Link Color 305 | 306 | Alpha Component 307 | 1 308 | Blue Component 309 | 0.93725490570068359 310 | Color Space 311 | sRGB 312 | Green Component 313 | 0.68627452850341797 314 | Red Component 315 | 0.3803921639919281 316 | 317 | Selected Text Color 318 | 319 | Alpha Component 320 | 1 321 | Blue Component 322 | 0.74901962280273438 323 | Color Space 324 | sRGB 325 | Green Component 326 | 0.69803923368453979 327 | Red Component 328 | 0.67058825492858887 329 | 330 | Selection Color 331 | 332 | Alpha Component 333 | 1 334 | Blue Component 335 | 0.26666668057441711 336 | Color Space 337 | sRGB 338 | Green Component 339 | 0.21960784494876862 340 | Red Component 341 | 0.19607843458652496 342 | 343 | 344 | 345 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # iTerm2 One Dark Theme 2 | 3 | [![All Contributors](https://img.shields.io/badge/all_contributors-1-orange.svg)](#contributors) 4 | 5 | > [One Dark](https://github.com/atom/one-dark-syntax) theme for iTerm2. 6 | 7 | ![Screenshot](screenshots/main.png) 8 | 9 | ## Installation 🔧 10 | 11 | First, download the [One Dark.itermcolors](https://raw.githubusercontent.com/one-dark/iterm-one-dark-theme/main/One%20Dark.itermcolors) file. If your browser adds the `.txt` extension after downloading, rename the file so it uses the `.itermcolors` extension. 12 | 13 | After downloading the file, open the iTerm settings and go to `Profiles > Colors`. Then, select the `Import...` option from the `Color Presets...` dropdown. 14 | 15 | ![Screenshot](screenshots/import.png) 16 | 17 | When prompted, select the `One Dark.itermcolors` file you just downloaded. This will import the One Dark preset for use. Finally, click `Color Presets...` and select `One Dark` from the list to enable the One Dark color theme for iTerm! 18 | 19 | ![Screenshot](screenshots/preset.png) 20 | 21 | ## Contributors ✨ 22 | 23 | Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 |
Mark Skelton
Mark Skelton

🎨 📖
Jef LeCompte
Jef LeCompte

🎨
34 | 35 | 36 | 37 | 38 | 39 | This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! 40 | -------------------------------------------------------------------------------- /screenshots/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/one-dark/iterm-one-dark-theme/56dfac2cce466130e1c276fd931c4898929c72b1/screenshots/import.png -------------------------------------------------------------------------------- /screenshots/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/one-dark/iterm-one-dark-theme/56dfac2cce466130e1c276fd931c4898929c72b1/screenshots/main.png -------------------------------------------------------------------------------- /screenshots/preset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/one-dark/iterm-one-dark-theme/56dfac2cce466130e1c276fd931c4898929c72b1/screenshots/preset.png --------------------------------------------------------------------------------