├── LICENSE ├── One Dark Tomorrow.tmTheme ├── One Dark.sublime-theme ├── One Dark.tmTheme ├── README.md ├── Widget - One Dark.sublime-settings ├── Widget - One Dark.tmTheme ├── assets ├── arrow_down.png ├── arrow_down@2x.png ├── arrow_right.png ├── arrow_right@2x.png ├── autocomplete_bg.png ├── close.png ├── close@2x.png ├── close_dirty.png ├── close_dirty@2x.png ├── close_dirty_hover.png ├── close_dirty_hover@2x.png ├── close_dirty_pressed.png ├── close_dirty_pressed@2x.png ├── close_hover.png ├── close_hover@2x.png ├── close_pressed.png ├── close_pressed@2x.png ├── close_unselected.png ├── close_unselected@2x.png ├── code_folding.png ├── code_folding_expanded.png ├── code_folding_expanded_hover.png ├── code_folding_hover.png ├── dirty.png ├── dirty@2x.png ├── dropdown_arrow.png ├── find_panel_bg.png ├── find_panel_button.png ├── find_panel_button_hover.png ├── find_panel_button_pressed.png ├── find_panel_button_selected.png ├── find_panel_left_button.png ├── find_panel_left_button_hover.png ├── find_panel_left_button_pressed.png ├── find_panel_left_button_selected.png ├── find_panel_middle_button.png ├── find_panel_middle_button_hover.png ├── find_panel_middle_button_pressed.png ├── find_panel_middle_button_selected.png ├── find_panel_right_button.png ├── find_panel_right_button_hover.png ├── find_panel_right_button_pressed.png ├── find_panel_right_button_selected.png ├── goto_panel_bg.png ├── goto_panel_row.png ├── goto_panel_row_selected.png ├── input_bg.png ├── input_bg_hover.png ├── open_files_close.png ├── open_files_dirty.png ├── scroll_tabs_left.png ├── scroll_tabs_right.png ├── scrollbar_thumb_horizontal.png ├── scrollbar_thumb_horizontal_hover.png ├── scrollbar_thumb_vertical.png ├── scrollbar_thumb_vertical_hover.png ├── status_bar_panels.png ├── status_bar_panels@2x.png ├── tab_panel_bg.png ├── tab_selected.png ├── tab_unselected.png ├── tooltip_bg.png └── tooltip_bg@2x.png └── icons ├── file_type_binary.png ├── file_type_binary@2x.png ├── file_type_default.png ├── file_type_default@2x.png ├── file_type_image.png ├── file_type_image@2x.png ├── file_type_markup.png ├── file_type_markup@2x.png ├── file_type_pdf.png ├── file_type_pdf@2x.png ├── file_type_source.png ├── file_type_source@2x.png ├── file_type_source_alt.png ├── file_type_source_alt@2x.png ├── file_type_symlink.png ├── file_type_symlink@2x.png ├── file_type_text.png ├── file_type_text@2x.png ├── file_type_zip.png ├── file_type_zip@2x.png ├── find_panel_case.png ├── find_panel_case@2x.png ├── find_panel_context.png ├── find_panel_context@2x.png ├── find_panel_highlight.png ├── find_panel_highlight@2x.png ├── find_panel_in_selection.png ├── find_panel_in_selection@2x.png ├── find_panel_preserve_case.png ├── find_panel_preserve_case@2x.png ├── find_panel_regex.png ├── find_panel_regex@2x.png ├── find_panel_reverse.png ├── find_panel_reverse@2x.png ├── find_panel_use_buffer.png ├── find_panel_use_buffer@2x.png ├── find_panel_whole_word.png ├── find_panel_whole_word@2x.png ├── find_panel_wrap.png ├── find_panel_wrap@2x.png ├── tree_view_folder.png ├── tree_view_folder@2x.png ├── tree_view_folder_dup.png ├── tree_view_folder_dup@2x.png ├── tree_view_folder_open.png └── tree_view_folder_open@2x.png /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Andres Michel 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 | -------------------------------------------------------------------------------- /One Dark Tomorrow.tmTheme: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | author 6 | Chris Kempson (http://chriskempson.com) / Douglas Soares de Andrade (http://douglasandrade.com) 7 | name 8 | One Dark Tomorrow 9 | semanticClass 10 | one-tomorrow-dark 11 | colorSpaceName 12 | sRGB 13 | gutterSettings 14 | 15 | background 16 | #2A303B 17 | divider 18 | #282a2e 19 | foreground 20 | #969896 21 | selectionBackground 22 | #373b41 23 | selectionForeground 24 | #b4b7b4 25 | 26 | settings 27 | 28 | 29 | settings 30 | 31 | background 32 | #2B303B 33 | caret 34 | #c5c8c6 35 | foreground 36 | #c5c8c6 37 | invisibles 38 | #969896 39 | lineHighlight 40 | #353A45 41 | selection 42 | #373b41 43 | 44 | 45 | 46 | name 47 | Text 48 | scope 49 | variable.parameter.function 50 | settings 51 | 52 | foreground 53 | #c5c8c6 54 | 55 | 56 | 57 | name 58 | Comments 59 | scope 60 | comment, punctuation.definition.comment 61 | settings 62 | 63 | foreground 64 | #969896 65 | 66 | 67 | 68 | name 69 | Punctuation 70 | scope 71 | punctuation.definition.string, punctuation.definition.variable, punctuation.definition.string, punctuation.definition.parameters, punctuation.definition.string, punctuation.definition.array 72 | settings 73 | 74 | foreground 75 | #c5c8c6 76 | 77 | 78 | 79 | name 80 | Delimiters 81 | scope 82 | none 83 | settings 84 | 85 | foreground 86 | #c5c8c6 87 | 88 | 89 | 90 | name 91 | Operators 92 | scope 93 | keyword.operator 94 | settings 95 | 96 | foreground 97 | #c5c8c6 98 | 99 | 100 | 101 | name 102 | Keywords 103 | scope 104 | keyword 105 | settings 106 | 107 | foreground 108 | #b294bb 109 | 110 | 111 | 112 | name 113 | Variables 114 | scope 115 | variable 116 | settings 117 | 118 | foreground 119 | #cc6666 120 | 121 | 122 | 123 | name 124 | Functions 125 | scope 126 | entity.name.function, meta.require, support.function.any-method 127 | settings 128 | 129 | foreground 130 | #81a2be 131 | 132 | 133 | 134 | name 135 | Classes 136 | scope 137 | support.class, entity.name.class, entity.name.type.class 138 | settings 139 | 140 | foreground 141 | #f0c674 142 | 143 | 144 | 145 | name 146 | Classes 147 | scope 148 | meta.class 149 | settings 150 | 151 | foreground 152 | #ffffff 153 | 154 | 155 | 156 | name 157 | Methods 158 | scope 159 | keyword.other.special-method 160 | settings 161 | 162 | foreground 163 | #81a2be 164 | 165 | 166 | 167 | name 168 | Storage 169 | scope 170 | storage 171 | settings 172 | 173 | foreground 174 | #b294bb 175 | 176 | 177 | 178 | name 179 | Support 180 | scope 181 | support.function 182 | settings 183 | 184 | foreground 185 | #8abeb7 186 | 187 | 188 | 189 | name 190 | Strings, Inherited Class 191 | scope 192 | string, constant.other.symbol, entity.other.inherited-class 193 | settings 194 | 195 | foreground 196 | #b5bd68 197 | 198 | 199 | 200 | name 201 | Integers 202 | scope 203 | constant.numeric 204 | settings 205 | 206 | foreground 207 | #de935f 208 | 209 | 210 | 211 | name 212 | Floats 213 | scope 214 | none 215 | settings 216 | 217 | foreground 218 | #de935f 219 | 220 | 221 | 222 | name 223 | Boolean 224 | scope 225 | none 226 | settings 227 | 228 | foreground 229 | #de935f 230 | 231 | 232 | 233 | name 234 | Constants 235 | scope 236 | constant 237 | settings 238 | 239 | foreground 240 | #de935f 241 | 242 | 243 | 244 | name 245 | Tags 246 | scope 247 | entity.name.tag 248 | settings 249 | 250 | foreground 251 | #cc6666 252 | 253 | 254 | 255 | name 256 | Attributes 257 | scope 258 | entity.other.attribute-name 259 | settings 260 | 261 | foreground 262 | #de935f 263 | 264 | 265 | 266 | name 267 | Attribute IDs 268 | scope 269 | entity.other.attribute-name.id, punctuation.definition.entity 270 | settings 271 | 272 | foreground 273 | #81a2be 274 | 275 | 276 | 277 | name 278 | Selector 279 | scope 280 | meta.selector 281 | settings 282 | 283 | foreground 284 | #b294bb 285 | 286 | 287 | 288 | name 289 | Values 290 | scope 291 | none 292 | settings 293 | 294 | foreground 295 | #de935f 296 | 297 | 298 | 299 | name 300 | Headings 301 | scope 302 | markup.heading punctuation.definition.heading, entity.name.section 303 | settings 304 | 305 | fontStyle 306 | 307 | foreground 308 | #81a2be 309 | 310 | 311 | 312 | name 313 | Units 314 | scope 315 | keyword.other.unit 316 | settings 317 | 318 | foreground 319 | #de935f 320 | 321 | 322 | 323 | name 324 | Bold 325 | scope 326 | markup.bold, punctuation.definition.bold 327 | settings 328 | 329 | fontStyle 330 | bold 331 | foreground 332 | #f0c674 333 | 334 | 335 | 336 | name 337 | Italic 338 | scope 339 | markup.italic, punctuation.definition.italic 340 | settings 341 | 342 | fontStyle 343 | italic 344 | foreground 345 | #b294bb 346 | 347 | 348 | 349 | name 350 | Code 351 | scope 352 | markup.raw.inline 353 | settings 354 | 355 | foreground 356 | #b5bd68 357 | 358 | 359 | 360 | name 361 | Link Text 362 | scope 363 | string.other.link 364 | settings 365 | 366 | foreground 367 | #cc6666 368 | 369 | 370 | 371 | name 372 | Link Url 373 | scope 374 | meta.link 375 | settings 376 | 377 | foreground 378 | #de935f 379 | 380 | 381 | 382 | name 383 | Lists 384 | scope 385 | markup.list 386 | settings 387 | 388 | foreground 389 | #cc6666 390 | 391 | 392 | 393 | name 394 | Quotes 395 | scope 396 | markup.quote 397 | settings 398 | 399 | foreground 400 | #de935f 401 | 402 | 403 | 404 | name 405 | Separator 406 | scope 407 | meta.separator 408 | settings 409 | 410 | background 411 | #373b41 412 | foreground 413 | #c5c8c6 414 | 415 | 416 | 417 | name 418 | Inserted 419 | scope 420 | markup.inserted 421 | settings 422 | 423 | foreground 424 | #b5bd68 425 | 426 | 427 | 428 | name 429 | Deleted 430 | scope 431 | markup.deleted 432 | settings 433 | 434 | foreground 435 | #cc6666 436 | 437 | 438 | 439 | name 440 | Changed 441 | scope 442 | markup.changed 443 | settings 444 | 445 | foreground 446 | #b294bb 447 | 448 | 449 | 450 | name 451 | Colors 452 | scope 453 | constant.other.color 454 | settings 455 | 456 | foreground 457 | #8abeb7 458 | 459 | 460 | 461 | name 462 | Regular Expressions 463 | scope 464 | string.regexp 465 | settings 466 | 467 | foreground 468 | #8abeb7 469 | 470 | 471 | 472 | name 473 | Escape Characters 474 | scope 475 | constant.character.escape 476 | settings 477 | 478 | foreground 479 | #8abeb7 480 | 481 | 482 | 483 | name 484 | Embedded 485 | scope 486 | punctuation.section.embedded, variable.interpolation 487 | settings 488 | 489 | foreground 490 | #a3685a 491 | 492 | 493 | 494 | name 495 | Invalid 496 | scope 497 | invalid.illegal 498 | settings 499 | 500 | background 501 | #cc6666 502 | foreground 503 | #969896 504 | 505 | 506 | 507 | name 508 | SublimeLinter Error 509 | scope 510 | sublimelinter.mark.error 511 | settings 512 | 513 | foreground 514 | #D02000 515 | 516 | 517 | name 518 | SublimeLinter Warning 519 | scope 520 | sublimelinter.mark.warning 521 | settings 522 | 523 | foreground 524 | #DDB700 525 | 526 | 527 | name 528 | SublimeLinter Gutter Mark 529 | scope 530 | sublimelinter.gutter-mark 531 | settings 532 | 533 | foreground 534 | #FFFFFF 535 | 536 | 537 | uuid 538 | bb0ac5b4-93b6-4367-b5e3-6a8fc1f27e67 539 | 540 | 541 | -------------------------------------------------------------------------------- /One Dark.sublime-theme: -------------------------------------------------------------------------------- 1 | [ 2 | // Autocomplete - background 3 | { 4 | "class": "auto_complete", 5 | "layer0.tint": [43, 48, 59], 6 | "layer0.opacity": 1.0, 7 | "row_padding": [7, 4], 8 | "dark_content": false 9 | }, 10 | // Autocomplete - border 11 | { 12 | "class": "popup_control", 13 | "content_margin": [1, 1], 14 | "layer0.tint": [31, 34, 40], 15 | "layer0.opacity": 1.0 16 | }, 17 | // Autocomplete - border just for Windows 18 | { 19 | "class": "popup_control", 20 | "settings": ["auto_complete_shadow"], 21 | "content_margin": [7, 5, 7, 9], 22 | "layer0.tint": [], 23 | "layer0.texture": "Theme - One Dark/assets/autocomplete_bg.png", 24 | "layer0.inner_margin": [11, 10, 11, 13], 25 | "layer0.opacity": 1.0 26 | }, 27 | // Autocomplete - label 28 | { 29 | "class": "auto_complete_label", 30 | "fg": [155 ,163, 177], 31 | "match_fg": [200, 203, 209], 32 | "selected_fg": [215, 216, 219], 33 | "selected_match_fg": [255, 255, 255] 34 | }, 35 | // Autocomplete - table row 36 | { 37 | "class": "table_row", 38 | "layer0.tint": [215, 216, 254, 28], 39 | "layer0.opacity": 0.0, 40 | "layer0.inner_margin": [1, 1] 41 | }, 42 | // Autocomplete - table row selected 43 | { 44 | "class": "table_row", 45 | "attributes": ["selected"], 46 | "layer0.opacity": 1.0 47 | }, 48 | // Code folding button 49 | { 50 | "class": "fold_button_control", 51 | "content_margin": [8, 8], 52 | "layer0.texture": "Theme - One Dark/assets/code_folding.png", 53 | "layer0.opacity": 1.0, 54 | "layer1.texture": "Theme - One Dark/assets/code_folding_hover.png", 55 | "layer1.opacity": 0.0 56 | }, 57 | // Code folding button hover 58 | { 59 | "class": "fold_button_control", 60 | "attributes": ["hover"], 61 | "layer0.opacity": 0.0, 62 | "layer1.opacity": 1.0 63 | }, 64 | // Code folding button expanded 65 | { 66 | "class": "fold_button_control", 67 | "attributes": ["expanded"], 68 | "layer0.texture": "Theme - One Dark/assets/code_folding_expanded.png", 69 | "layer1.texture": "Theme - One Dark/assets/code_folding_expanded_hover.png" 70 | }, 71 | // Command palette and goto panel background 72 | { 73 | "class": "overlay_control", 74 | "content_margin": [10, 10, 10, 11], 75 | "layer0.texture": "Theme - One Dark/assets/goto_panel_bg.png", 76 | "layer0.opacity": 1.0, 77 | "layer0.inner_margin": [7, 1, 7, 9] 78 | }, 79 | // Command palette panel - row 80 | { 81 | "class": "mini_quick_panel_row", 82 | "layer0.texture": "Theme - One Dark/assets/goto_panel_row.png", 83 | "layer1.texture": "Theme - One Dark/assets/goto_panel_row_selected.png", 84 | "layer0.opacity": 1.0, 85 | "layer1.opacity": 0.0, 86 | "layer0.inner_margin": [2, 2, 2, 1], 87 | "layer1.inner_margin": [2, 2, 2, 1] 88 | }, 89 | // Command palette panel - row selected 90 | { 91 | "class": "mini_quick_panel_row", 92 | "attributes": ["selected"], 93 | "layer0.opacity": 0.0, 94 | "layer1.opacity": 1.0 95 | }, 96 | // Dialog 97 | { 98 | "class": "dialog", 99 | "layer0.tint": [33, 37, 43], 100 | "layer0.opacity": 1.0 101 | }, 102 | // Input field - background 103 | { 104 | "class": "text_line_control", 105 | "content_margin": [10, 6, 10, 6], 106 | "layer0.texture": "Theme - One Dark/assets/input_bg.png", 107 | "layer1.texture": "Theme - One Dark/assets/input_bg_hover.png", 108 | "layer0.opacity": 1.0, 109 | "layer1.opacity": 0.0, 110 | "layer0.inner_margin": [6, 6, 6, 7], 111 | "layer1.inner_margin": [6, 6, 6, 7] 112 | }, 113 | // Input field - background hover 114 | { 115 | "class": "text_line_control", 116 | "attributes": ["hover"], 117 | "layer0.opacity": 0.0, 118 | "layer1.opacity": 1.0 119 | }, 120 | // Input field - dropdown button 121 | { 122 | "class": "dropdown_button_control", 123 | "content_margin": [8, 8], 124 | "layer0.texture": "Theme - One Dark/assets/dropdown_arrow.png", 125 | "layer1.texture": "Theme - One Dark/assets/dropdown_arrow.png", 126 | "layer0.opacity": 0.53, 127 | "layer1.opacity": 0.0 128 | }, 129 | // Input field - dropdown button hover 130 | { 131 | "class": "dropdown_button_control", 132 | "attributes": ["hover"], 133 | "layer0.opacity": 1.0 134 | }, 135 | // Find panel and status button - label 136 | { 137 | "class": "label_control", 138 | "color": [157, 165, 180], 139 | "shadow_color": [0, 0, 0, 0], 140 | "shadow_offset": [0, 0] 141 | }, 142 | // Find panel - background 143 | { 144 | "class": "panel_control", 145 | "content_margin": [5, 2, 2, 2], 146 | "layer0.texture": "Theme - One Dark/assets/find_panel_bg.png", 147 | "layer0.opacity": 1.0, 148 | "layer0.inner_margin": [1, 2, 1, 1] 149 | }, 150 | // Find panel - text button label 151 | { 152 | "class": "label_control", 153 | "parents": [{"class": "button_control"}], 154 | "color": [157, 165, 180], 155 | "shadow_color": [0, 0, 0, 0], 156 | "shadow_offset": [0, 0], 157 | "font.size": 12 158 | }, 159 | // Find panel - text button label hover 160 | { 161 | "class": "label_control", 162 | "parents": [{"class": "button_control", "attributes": ["hover"]}], 163 | "color": [255, 255, 255], 164 | "shadow_color": [0, 0, 0, 0], 165 | "shadow_offset": [0, 0] 166 | }, 167 | // Find panel - text button label pressed 168 | { 169 | "class": "label_control", 170 | "parents": [{"class": "button_control", "attributes": ["pressed"]}], 171 | "color": [255, 255, 255], 172 | "shadow_color": [0, 0, 0, 0], 173 | "shadow_offset": [0, 0] 174 | }, 175 | // Find panel - text button background 176 | { 177 | "class": "button_control", 178 | "content_margin": [8, 8], 179 | "min_size": [75, 0], 180 | "layer0.texture": "Theme - One Dark/assets/find_panel_button.png", 181 | "layer1.texture": "Theme - One Dark/assets/find_panel_button_hover.png", 182 | "layer2.texture": "Theme - One Dark/assets/find_panel_button_pressed.png", 183 | "layer0.opacity": 1.0, 184 | "layer1.opacity": 0.0, 185 | "layer2.opacity": 0.0, 186 | "layer0.inner_margin": [5, 6], 187 | "layer1.inner_margin": [5, 6], 188 | "layer2.inner_margin": [5, 6] 189 | }, 190 | // Find panel - text button hover 191 | { 192 | "class": "button_control", 193 | "attributes": ["hover"], 194 | "layer0.opacity": 0.0, 195 | "layer1.opacity": 1.0 196 | }, 197 | // Find panel - text button pressed 198 | { 199 | "class": "button_control", 200 | "attributes": ["pressed"], 201 | "layer0.opacity": 0.0, 202 | "layer1.opacity": 0.0, 203 | "layer2.opacity": 1.0 204 | }, 205 | // Find panel - middle icon button 206 | { 207 | "class": "icon_button_control", 208 | "layer0.texture": "Theme - One Dark/assets/find_panel_middle_button.png", 209 | "layer1.texture": "Theme - One Dark/assets/find_panel_middle_button_hover.png", 210 | "layer2.texture": "Theme - One Dark/assets/find_panel_middle_button_pressed.png", 211 | "layer3.texture": "Theme - One Dark/assets/find_panel_middle_button_selected.png", 212 | "layer0.inner_margin": [5, 6], 213 | "layer1.inner_margin": [5, 6], 214 | "layer2.inner_margin": [5, 6], 215 | "layer3.inner_margin": [5, 6], 216 | "layer0.opacity": 1.0, 217 | "layer1.opacity": 0.0, 218 | "layer2.opacity": 0.0, 219 | "layer3.opacity": 0.0, 220 | "content_margin": [12, 8, 12, 8] 221 | }, 222 | // Find panel - left icon button 223 | { 224 | "class": "icon_button_control", 225 | "attributes": ["left"], 226 | "layer0.texture": "Theme - One Dark/assets/find_panel_left_button.png", 227 | "layer1.texture": "Theme - One Dark/assets/find_panel_left_button_hover.png", 228 | "layer2.texture": "Theme - One Dark/assets/find_panel_left_button_pressed.png", 229 | "layer3.texture": "Theme - One Dark/assets/find_panel_left_button_selected.png" 230 | }, 231 | // Find panel - right icon button 232 | { 233 | "class": "icon_button_control", 234 | "attributes": ["right"], 235 | "layer0.texture": "Theme - One Dark/assets/find_panel_right_button.png", 236 | "layer1.texture": "Theme - One Dark/assets/find_panel_right_button_hover.png", 237 | "layer2.texture": "Theme - One Dark/assets/find_panel_right_button_pressed.png", 238 | "layer3.texture": "Theme - One Dark/assets/find_panel_right_button_selected.png" 239 | }, 240 | // Find panel - icon button 241 | { 242 | "class": "icon_button_control", 243 | "attributes": ["left", "right"], 244 | "layer0.texture": "Theme - One Dark/assets/find_panel_button.png", 245 | "layer1.texture": "Theme - One Dark/assets/find_panel_button_hover.png", 246 | "layer2.texture": "Theme - One Dark/assets/find_panel_button_pressed.png", 247 | "layer3.texture": "Theme - One Dark/assets/find_panel_button_selected.png" 248 | }, 249 | // Find panel - icon button hover 250 | { 251 | "class": "icon_button_control", 252 | "attributes": ["hover"], 253 | "layer1.opacity": 1.0 254 | }, 255 | // Find panel - icon button pressed 256 | { 257 | "class": "icon_button_control", 258 | "attributes": ["pressed"], 259 | "layer2.opacity": 1.0 260 | }, 261 | // Find panel - icon button selected 262 | { 263 | "class": "icon_button_control", 264 | "attributes": ["selected"], 265 | "layer3.opacity": 1.0 266 | }, 267 | 268 | // find panel - close button 269 | { 270 | "class": "panel_close_button", 271 | "content_margin": [0, 0], 272 | "layer0.opacity": 0.0, 273 | "layer1.opacity": 0.0 274 | }, 275 | // Find panel - regex icon 276 | { 277 | "class": "icon_regex", 278 | "content_margin": [8, 8], 279 | "layer0.texture": "Theme - One Dark/icons/find_panel_regex.png", 280 | "layer0.opacity": 0.53 281 | }, 282 | // Find panel - regex icon hover 283 | { 284 | "class": "icon_regex", 285 | "parents": [{"class": "icon_button_control", "attributes": ["hover"]}], 286 | "layer0.opacity": 1.0 287 | }, 288 | // Find panel - regex icon pressed 289 | { 290 | "class": "icon_regex", 291 | "parents": [{"class": "icon_button_control", "attributes": ["pressed"]}], 292 | "layer0.opacity": 1.0 293 | }, 294 | // Find panel - regex icon selected 295 | { 296 | "class": "icon_regex", 297 | "parents": [{"class": "icon_button_control", "attributes": ["selected"]}], 298 | "layer0.opacity": 1.0 299 | }, 300 | // Find panel - case icon 301 | { 302 | "class": "icon_case", 303 | "content_margin": [8, 8], 304 | "layer0.texture": "Theme - One Dark/icons/find_panel_case.png", 305 | "layer0.opacity": 0.53 306 | }, 307 | // Find panel - case icon hover 308 | { 309 | "class": "icon_case", 310 | "parents": [{"class": "icon_button_control", "attributes": ["hover"]}], 311 | "layer0.opacity": 1.0 312 | }, 313 | // Find panel - case icon pressed 314 | { 315 | "class": "icon_case", 316 | "parents": [{"class": "icon_button_control", "attributes": ["pressed"]}], 317 | "layer0.opacity": 1.0 318 | }, 319 | // Find panel - case icon selected 320 | { 321 | "class": "icon_case", 322 | "parents": [{"class": "icon_button_control", "attributes": ["selected"]}], 323 | "layer0.opacity": 1.0 324 | }, 325 | // Find panel - highlight icon 326 | { 327 | "class": "icon_highlight", 328 | "content_margin": [8, 8], 329 | "layer0.texture": "Theme - One Dark/icons/find_panel_highlight.png", 330 | "layer0.opacity": 0.53 331 | }, 332 | // Find panel - highlight icon hover 333 | { 334 | "class": "icon_highlight", 335 | "parents": [{"class": "icon_button_control", "attributes": ["hover"]}], 336 | "layer0.opacity": 1.0 337 | }, 338 | // Find panel - highlight icon pressed 339 | { 340 | "class": "icon_highlight", 341 | "parents": [{"class": "icon_button_control", "attributes": ["pressed"]}], 342 | "layer0.opacity": 1.0 343 | }, 344 | // Find panel - highlight icon selected 345 | { 346 | "class": "icon_highlight", 347 | "parents": [{"class": "icon_button_control", "attributes": ["selected"]}], 348 | "layer0.opacity": 1.0 349 | }, 350 | // Find panel - in selection icon 351 | { 352 | "class": "icon_in_selection", 353 | "content_margin": [8, 8], 354 | "layer0.texture": "Theme - One Dark/icons/find_panel_in_selection.png", 355 | "layer0.opacity": 0.53 356 | }, 357 | // Find panel - in selection icon hover 358 | { 359 | "class": "icon_in_selection", 360 | "parents": [{"class": "icon_button_control", "attributes": ["hover"]}], 361 | "layer0.opacity": 1.0 362 | }, 363 | // Find panel - in selection icon pressed 364 | { 365 | "class": "icon_in_selection", 366 | "parents": [{"class": "icon_button_control", "attributes": ["pressed"]}], 367 | "layer0.opacity": 1.0 368 | }, 369 | // Find panel - in selection icon selected 370 | { 371 | "class": "icon_in_selection", 372 | "parents": [{"class": "icon_button_control", "attributes": ["selected"]}], 373 | "layer0.opacity": 1.0 374 | }, 375 | // Find panel - reverse icon 376 | { 377 | "class": "icon_reverse", 378 | "content_margin": [8, 8], 379 | "layer0.texture": "Theme - One Dark/icons/find_panel_reverse.png", 380 | "layer0.opacity": 0.53 381 | }, 382 | // Find panel - reverse icon hover 383 | { 384 | "class": "icon_reverse", 385 | "parents": [{"class": "icon_button_control", "attributes": ["hover"]}], 386 | "layer0.opacity": 1.0 387 | }, 388 | // Find panel - reverse icon pressed 389 | { 390 | "class": "icon_reverse", 391 | "parents": [{"class": "icon_button_control", "attributes": ["pressed"]}], 392 | "layer0.opacity": 1.0 393 | }, 394 | // Find panel - reverse icon selected 395 | { 396 | "class": "icon_reverse", 397 | "parents": [{"class": "icon_button_control", "attributes": ["selected"]}], 398 | "layer0.opacity": 1.0 399 | }, 400 | // Find panel - whole word icon 401 | { 402 | "class": "icon_whole_word", 403 | "content_margin": [8, 8], 404 | "layer0.texture": "Theme - One Dark/icons/find_panel_whole_word.png", 405 | "layer0.opacity": 0.53 406 | }, 407 | // Find panel - whole word icon hover 408 | { 409 | "class": "icon_whole_word", 410 | "parents": [{"class": "icon_button_control", "attributes": ["hover"]}], 411 | "layer0.opacity": 1.0 412 | }, 413 | // Find panel - whole word icon pressed 414 | { 415 | "class": "icon_whole_word", 416 | "parents": [{"class": "icon_button_control", "attributes": ["pressed"]}], 417 | "layer0.opacity": 1.0 418 | }, 419 | // Find panel - whole word icon selected 420 | { 421 | "class": "icon_whole_word", 422 | "parents": [{"class": "icon_button_control", "attributes": ["selected"]}], 423 | "layer0.opacity": 1.0 424 | }, 425 | // Find panel - wrap icon 426 | { 427 | "class": "icon_wrap", 428 | "content_margin": [8, 8], 429 | "layer0.texture": "Theme - One Dark/icons/find_panel_wrap.png", 430 | "layer0.opacity": 0.53 431 | }, 432 | // Find panel - wrap icon hover 433 | { 434 | "class": "icon_wrap", 435 | "parents": [{"class": "icon_button_control", "attributes": ["hover"]}], 436 | "layer0.opacity": 1.0 437 | }, 438 | // Find panel - wrap icon pressed 439 | { 440 | "class": "icon_wrap", 441 | "parents": [{"class": "icon_button_control", "attributes": ["pressed"]}], 442 | "layer0.opacity": 1.0 443 | }, 444 | // Find panel - wrap icon selected 445 | { 446 | "class": "icon_wrap", 447 | "parents": [{"class": "icon_button_control", "attributes": ["selected"]}], 448 | "layer0.opacity": 1.0 449 | }, 450 | // Find panel - preserve case icon 451 | { 452 | "class": "icon_preserve_case", 453 | "content_margin": [8, 8], 454 | "layer0.texture": "Theme - One Dark/icons/find_panel_preserve_case.png", 455 | "layer0.opacity": 0.53 456 | }, 457 | // Find panel - preserve case icon hover 458 | { 459 | "class": "icon_preserve_case", 460 | "parents": [{"class": "icon_button_control", "attributes": ["hover"]}], 461 | "layer0.opacity": 1.0 462 | }, 463 | // Find panel - preserve case icon pressed 464 | { 465 | "class": "icon_preserve_case", 466 | "parents": [{"class": "icon_button_control", "attributes": ["pressed"]}], 467 | "layer0.opacity": 1.0 468 | }, 469 | // Find panel - preserve case icon selected 470 | { 471 | "class": "icon_preserve_case", 472 | "parents": [{"class": "icon_button_control", "attributes": ["selected"]}], 473 | "layer0.opacity": 1.0 474 | }, 475 | // Find panel - context icon 476 | { 477 | "class": "icon_context", 478 | "content_margin": [8, 8], 479 | "layer0.texture": "Theme - One Dark/icons/find_panel_context.png", 480 | "layer0.opacity": 0.53 481 | }, 482 | // Find panel - context icon hover 483 | { 484 | "class": "icon_context", 485 | "parents": [{"class": "icon_button_control", "attributes": ["hover"]}], 486 | "layer0.opacity": 1.0 487 | }, 488 | // Find panel - context icon pressed 489 | { 490 | "class": "icon_context", 491 | "parents": [{"class": "icon_button_control", "attributes": ["pressed"]}], 492 | "layer0.opacity": 1.0 493 | }, 494 | // Find panel - context icon selected 495 | { 496 | "class": "icon_context", 497 | "parents": [{"class": "icon_button_control", "attributes": ["selected"]}], 498 | "layer0.opacity": 1.0 499 | }, 500 | // Find panel - use buffer icon 501 | { 502 | "class": "icon_use_buffer", 503 | "content_margin": [8, 8], 504 | "layer0.texture": "Theme - One Dark/icons/find_panel_use_buffer.png", 505 | "layer0.opacity": 0.53 506 | }, 507 | // Find panel - use buffer icon hover 508 | { 509 | "class": "icon_use_buffer", 510 | "parents": [{"class": "icon_button_control", "attributes": ["hover"]}], 511 | "layer0.opacity": 1.0 512 | }, 513 | // Find panel - use buffer icon pressed 514 | { 515 | "class": "icon_use_buffer", 516 | "parents": [{"class": "icon_button_control", "attributes": ["pressed"]}], 517 | "layer0.opacity": 1.0 518 | }, 519 | // Find panel - use buffer icon selected 520 | { 521 | "class": "icon_use_buffer", 522 | "parents": [{"class": "icon_button_control", "attributes": ["selected"]}], 523 | "layer0.opacity": 1.0 524 | }, 525 | // Goto panel 526 | { 527 | "class": "quick_panel", 528 | "row_padding": [10, 15], 529 | "layer0.tint": [0, 0, 0, 0], 530 | "layer0.opacity": 1.0, 531 | "dark_content": false 532 | }, 533 | // Goto panel - row 534 | { 535 | "class": "quick_panel_row", 536 | "layer0.texture": "Theme - One Dark/assets/goto_panel_row.png", 537 | "layer1.texture": "Theme - One Dark/assets/goto_panel_row_selected.png", 538 | "layer0.opacity": 1.0, 539 | "layer1.opacity": 0.0, 540 | "layer0.inner_margin": [2, 2, 2, 1], 541 | "layer1.inner_margin": [2, 2, 2, 1] 542 | }, 543 | // Goto panel selected 544 | { 545 | "class": "quick_panel_row", 546 | "attributes": ["selected"], 547 | "layer0.opacity": 0.0, 548 | "layer1.opacity": 1.0 549 | }, 550 | // Goto panel - label 551 | { 552 | "class": "quick_panel_label", 553 | "fg": [157, 165, 180], 554 | "match_fg": [117, 158, 242], 555 | "selected_fg": [215, 218, 224], 556 | "selected_match_fg": [117, 158, 242] 557 | }, 558 | // Goto panel - path label 559 | { 560 | "class": "quick_panel_path_label", 561 | "fg": [107, 117, 126], 562 | "match_fg": [117, 158, 242], 563 | "selected_fg": [136, 141, 150], 564 | "selected_match_fg": [117, 158, 242] 565 | }, 566 | // Goto panel - score label 567 | { 568 | "class": "quick_panel_score_label", 569 | "fg": [157, 165, 180], 570 | "selected_fg": [215, 218, 224] 571 | }, 572 | // Layout - empty window background 573 | { 574 | "class": "sheet_container_control", 575 | "layer0.tint": [33, 37, 43], 576 | "layer0.opacity": 1.0 577 | }, 578 | // Layout - grid border 579 | { 580 | "class": "grid_layout_control", 581 | "border_size": 0.5 , 582 | "border_color": [24, 26, 31] 583 | }, 584 | // Mini map 585 | { 586 | "class": "minimap_control", 587 | "viewport_color": [153, 187, 255, 10], 588 | "viewport_opacity": 1.0 589 | }, 590 | // Mini map hidden 591 | { 592 | "class": "minimap_control", 593 | "settings": ["!always_show_minimap_viewport"], 594 | "viewport_opacity": 0.0 595 | }, 596 | // Mini map hover 597 | { 598 | "class": "minimap_control", 599 | "attributes": ["hover"], 600 | "viewport_color": [153, 187, 255, 10], 601 | "viewport_opacity": 1.0 602 | }, 603 | // Progress bar - background 604 | { 605 | "class": "progress_bar_control", 606 | "layer0.tint": [27, 29, 35], 607 | "layer0.opacity": 1.0 608 | }, 609 | // Progress bar - gauge 610 | { 611 | "class": "progress_gauge_control", 612 | "layer0.tint": [86, 138, 242], 613 | "layer0.opacity": 1.0, 614 | "content_margin": [0, 6] 615 | }, 616 | // Scrollbar - background 617 | { 618 | "class": "scroll_bar_control", 619 | "layer0.tint": [33, 37, 43], 620 | "layer0.opacity": 1.0, 621 | "blur": false 622 | }, 623 | // Scrollbar - corner background 624 | { 625 | "class": "scroll_corner_control", 626 | "layer0.tint": [33, 37, 43], 627 | "layer0.opacity": 1.0 628 | }, 629 | // Scrollbar - vertical thumb 630 | { 631 | "class": "puck_control", 632 | "content_margin": [5, 5, 4, 5], 633 | "layer0.texture": "Theme - One Dark/assets/scrollbar_thumb_vertical.png", 634 | "layer0.opacity": 1.0, 635 | "layer0.inner_margin": [1, 4], 636 | "blur": false 637 | }, 638 | // Scrollbar - horizontal thumb 639 | { 640 | "class": "puck_control", 641 | "attributes": ["horizontal"], 642 | "content_margin": [5, 5], 643 | "layer0.texture": "Theme - One Dark/assets/scrollbar_thumb_horizontal.png", 644 | "layer0.inner_margin": [4, 1] 645 | }, 646 | // Scrollbar - overlay 647 | { 648 | "class": "scroll_area_control", 649 | "overlay": true 650 | }, 651 | // Scrollbar - no overlay 652 | { 653 | "class": "scroll_area_control", 654 | "settings": ["!overlay_scroll_bars"], 655 | "overlay": false 656 | }, 657 | // Scrollbar - overlay background 658 | { 659 | "class": "scroll_bar_control", 660 | "settings": ["overlay_scroll_bars"], 661 | "layer0.tint": [0, 0, 0, 0], 662 | "blur": true 663 | }, 664 | // Scrollbar - overlay thumb 665 | { 666 | "class": "puck_control", 667 | "settings": ["overlay_scroll_bars"], 668 | "blur": true 669 | }, 670 | // Status bar - label 671 | { 672 | "class": "label_control", 673 | "parents": [{ "class": "status_bar" }], 674 | "color": [157, 165, 180], 675 | "shadow_color": [0, 0, 0, 0], 676 | "shadow_offset": [0, 0], 677 | "font.size": 12 678 | }, 679 | // Status bar - background 680 | { 681 | "class": "status_bar", 682 | "content_margin": [9, 6, 4, 6], 683 | "layer0.texture": "Theme - One Dark/assets/find_panel_bg.png", 684 | "layer0.opacity": 1.0, 685 | "layer0.inner_margin": [1, 2, 1, 1] 686 | }, 687 | // Status bar - margin 688 | { 689 | "class": "status_container", 690 | "content_margin": [0, 4, 0, 3] 691 | }, 692 | // Status bar - text button 693 | { 694 | "class": "status_button", 695 | "content_margin": [20, 4, 5, 3], 696 | "layer0.tint": [125, 125, 125, 0], 697 | "layer0.opacity": 1.0, 698 | "layer0.draw_center": false, 699 | "layer0.inner_margin": [0, 0, 0, 0], 700 | "min_size": [0, 0] 701 | }, 702 | // Status bar - icon button 703 | { 704 | "class": "panel_button_control", 705 | "content_margin": [12, 8], 706 | "layer0.texture": "Theme - One Dark/assets/status_bar_panels.png", 707 | "layer0.opacity": 0.71 708 | }, 709 | // Status bar - icon button hover 710 | { 711 | "class": "panel_button_control", 712 | "attributes": ["hover"], 713 | "layer0.opacity": 1.0 714 | }, 715 | // Tab panel - background 716 | { 717 | "class": "tabset_control", 718 | "layer0.texture": "Theme - One Dark/assets/tab_panel_bg.png", 719 | "layer0.opacity": 1.0, 720 | "layer0.inner_margin": [2, 2], 721 | "tab_overlap": 0, 722 | "tab_width": 264, 723 | "tab_min_width": 107, 724 | "tab_height": 31, 725 | "mouse_wheel_switch": false 726 | }, 727 | // Tab panel - mouse wheel switch 728 | { 729 | "class": "tabset_control", 730 | "settings": ["mouse_wheel_switches_tabs", "!enable_tab_scrolling"], 731 | "mouse_wheel_switch": true 732 | }, 733 | // Scroll tab - left button 734 | { 735 | "class": "scroll_tabs_left_button", 736 | "content_margin": [8, 8], 737 | "layer0.texture": "Theme - One Dark/assets/scroll_tabs_left.png", 738 | "layer1.texture": "Theme - One Dark/assets/scroll_tabs_left.png", 739 | "layer0.opacity": 1.0, 740 | "layer1.opacity": 0.0, 741 | "layer0.inner_margin": 0, 742 | "layer1.inner_margin": 0 743 | }, 744 | // Scroll tab - left button hidden 745 | { 746 | "class": "scroll_tabs_left_button", 747 | "settings": ["!show_scroll_tabs", "!one_dark_show_scroll_tabs"], 748 | "content_margin": [0, 0] 749 | }, 750 | // Scroll tab - left button hover 751 | { 752 | "class": "scroll_tabs_left_button", 753 | "attributes": ["hover"], 754 | "layer0.opacity": 0.0, 755 | "layer1.opacity": 1.0 756 | }, 757 | // Scroll tab - right button 758 | { 759 | "class": "scroll_tabs_right_button", 760 | "content_margin": [8, 8], 761 | "layer0.texture": "Theme - One Dark/assets/scroll_tabs_right.png", 762 | "layer1.texture": "Theme - One Dark/assets/scroll_tabs_right.png", 763 | "layer0.opacity": 1.0, 764 | "layer1.opacity": 0.0, 765 | "layer0.inner_margin": 0, 766 | "layer1.inner_margin": 0 767 | }, 768 | // Scroll tab - right button hidden 769 | { 770 | "class": "scroll_tabs_right_button", 771 | "settings": ["!show_scroll_tabs", "!one_dark_show_scroll_tabs"], 772 | "content_margin": [0, 0] 773 | }, 774 | // Scroll tab - right button hover 775 | { 776 | "class": "scroll_tabs_right_button", 777 | "attributes": ["hover"], 778 | "layer0.opacity": 0.0, 779 | "layer1.opacity": 1.0 780 | }, 781 | // Tab unselected 782 | { 783 | "class": "tab_control", 784 | "content_margin": [33, -1, 7, 0], 785 | "layer0.texture": "Theme - One Dark/assets/tab_unselected.png", 786 | "layer1.texture": "Theme - One Dark/assets/tab_selected.png", 787 | "layer0.opacity": 1.0, 788 | "layer1.opacity": 0.0, 789 | "layer0.inner_margin": [2, 2], 790 | "layer1.inner_margin": [4, 4], 791 | "max_margin_trim": 6, 792 | "hit_test_level": 0.4 793 | }, 794 | // Tab selected 795 | { 796 | "class": "tab_control", 797 | "attributes": ["selected"], 798 | "layer0.opacity": 0.0, 799 | "layer1.opacity": 1.0 800 | }, 801 | // Tab - label 802 | { 803 | "class": "tab_label", 804 | "fg": [157, 165, 180, 154], 805 | "shadow_color": [0, 0, 0, 0], 806 | "shadow_offset": [0, 0], 807 | "font.italic": false, 808 | "font.size": 12 809 | }, 810 | // Tab - label selected 811 | { 812 | "class": "tab_label", 813 | "parents": [{"class": "tab_control", "attributes": ["selected"]}], 814 | "fg": [215, 218, 224], 815 | "shadow_color": [0, 0, 0, 0], 816 | "shadow_offset": [0, 0] 817 | }, 818 | // Tab - label dirty 819 | { 820 | "class": "tab_label", 821 | "parents": [{"class": "tab_control"}], 822 | "attributes": ["dirty"], 823 | "settings": ["highlight_modified_tabs"], 824 | "fg": [255, 255, 255] 825 | }, 826 | // Tab - label transient 827 | { 828 | "class": "tab_label", 829 | "settings": ["!sublime_text_2", "!one_dark_sublime_text_2"], 830 | "attributes": ["transient"], 831 | "font.italic": true 832 | }, 833 | // Tab - close button 834 | { 835 | "class": "tab_close_button", 836 | "content_margin": [0, 0], 837 | "layer0.texture": "Theme - One Dark/assets/close_unselected.png", 838 | "layer1.texture": "Theme - One Dark/assets/close_hover.png", 839 | "layer2.texture": "Theme - One Dark/assets/close_pressed.png", 840 | "layer3.texture": "Theme - One Dark/assets/dirty.png", 841 | "layer0.opacity": { "target": 0.0, "speed": 10, "interpolation": "smoothstep" }, 842 | "layer1.opacity": 0.0, 843 | "layer2.opacity": 0.0, 844 | "layer3.opacity": 0.0 845 | }, 846 | // Tab - close button visible 847 | { 848 | "class": "tab_close_button", 849 | "settings": ["show_tab_close_buttons"], 850 | "content_margin": [9, 9] 851 | }, 852 | // tab - close button on selected tab 853 | { 854 | "class": "tab_close_button", 855 | "parents": [{"class": "tab_control", "attributes": ["selected"]}], 856 | "layer0.texture": "Theme - One Dark/assets/close.png" 857 | }, 858 | // Tab - close button on dirty tab 859 | { 860 | "class": "tab_close_button", 861 | "parents": [{"class": "tab_control", "attributes": ["dirty"]}], 862 | "layer0.opacity": 0.0, 863 | "layer1.opacity": 0.0, 864 | "layer2.opacity": 0.0, 865 | "layer3.opacity": 1.0, 866 | "layer0.texture": "Theme - One Dark/assets/close_dirty.png", 867 | "layer1.texture": "Theme - One Dark/assets/close_dirty_hover.png", 868 | "layer2.texture": "Theme - One Dark/assets/close_dirty_pressed.png" 869 | }, 870 | // Tab - close button tab hover 871 | { 872 | "class": "tab_close_button", 873 | "parents": [{"class": "tab_control", "attributes": ["hover"]}], 874 | "layer0.opacity": { "target": 1.0, "speed": 10, "interpolation": "smoothstep" }, 875 | "layer1.opacity": 0.0, 876 | "layer2.opacity": 0.0, 877 | "layer3.opacity": 0.0 878 | }, 879 | // Tab - close button hover 880 | { 881 | "class": "tab_close_button", 882 | "attributes": ["hover"], 883 | "layer0.opacity": 0.0, 884 | "layer1.opacity": 1.0, 885 | "layer2.opacity": 0.0, 886 | "layer3.opacity": 0.0 887 | }, 888 | // Tab - close button pressed 889 | { 890 | "class": "tab_close_button", 891 | "attributes": ["pressed"], 892 | "layer0.opacity": 0.0, 893 | "layer1.opacity": 0.0, 894 | "layer2.opacity": 1.0, 895 | "layer3.opacity": 0.0 896 | }, 897 | // Show tabs - dropdown button 898 | { 899 | "class": "show_tabs_dropdown_button", 900 | "content_margin": [8, 8], 901 | "layer0.texture": "Theme - One Dark/assets/dropdown_arrow.png", 902 | "layer1.texture": "Theme - One Dark/assets/dropdown_arrow.png", 903 | "layer0.opacity": 1.0, 904 | "layer1.opacity": 0.0, 905 | "layer0.inner_margin": 0, 906 | "layer1.inner_margin": 0 907 | }, 908 | // Show tabs - dropdown button hidden 909 | { 910 | "class": "show_tabs_dropdown_button", 911 | "settings": ["!show_tabs_dropdown", "!one_dark_show_tabs_dropdown"], 912 | "content_margin": [0, 0] 913 | }, 914 | // Show tabs - dropdown button hover 915 | { 916 | "class": "show_tabs_dropdown_button", 917 | "attributes": ["hover"], 918 | "layer0.opacity": 0.0, 919 | "layer1.opacity": 1.0 920 | }, 921 | // Tooltip - background 922 | { 923 | "class": "tool_tip_control", 924 | "content_margin": [10, 10], 925 | "layer0.texture": "Theme - One Dark/assets/tooltip_bg.png", 926 | "layer0.inner_margin": [3, 3], 927 | "layer0.opacity": 1.0 928 | }, 929 | // Tooltip - label 930 | { 931 | "class": "tool_tip_label_control", 932 | "color": [255, 255, 255], 933 | "font.size": 12 934 | }, 935 | // Tree view - background and padding 936 | { 937 | "class": "sidebar_tree", 938 | "row_padding": [6, 6], 939 | "indent": 17, 940 | "indent_offset": 14, 941 | "indent_top_level": false, 942 | "layer0.tint": [33, 37, 43], 943 | "layer0.opacity": 1.0, 944 | "dark_content": false 945 | }, 946 | // Tree view - ST2 947 | { 948 | "class": "sidebar_tree", 949 | "settings": ["sublime_text_2", "!one_dark_sublime_text_2"], 950 | "indent": 12 951 | }, 952 | // One Dark settings prefix 953 | { 954 | "class": "sidebar_tree", 955 | "settings": ["!sublime_text_2", "one_dark_sublime_text_2"], 956 | "indent": 12 957 | }, 958 | // Tree view - margin 959 | { 960 | "class": "sidebar_container", 961 | "content_margin": [0, 1, 1, 0], 962 | "layer0.tint": [24, 26, 31], 963 | "layer0.opacity": 1.0, 964 | "layer0.draw_center": false 965 | }, 966 | // Tree view - heading 967 | { 968 | "class": "sidebar_heading", 969 | "color": [215, 218, 224], 970 | "font.size": 12, 971 | "font.bold": false, 972 | "shadow_color": [0, 0, 0, 0], 973 | "shadow_offset": [0, 0] 974 | }, 975 | // Tree view - disclosure button 976 | { 977 | "class": "disclosure_button_control", 978 | "content_margin": [8, 8], 979 | "layer0.texture": "Theme - One Dark/assets/arrow_right.png", 980 | "layer1.texture": "Theme - One Dark/assets/arrow_down.png", 981 | "layer0.opacity": 0.71, 982 | "layer1.opacity": 0.0, 983 | "layer0.inner_margin": 0, 984 | "layer1.inner_margin": 0 985 | }, 986 | // Tree view - disclosure button expanded 987 | { 988 | "class": "disclosure_button_control", 989 | "attributes": ["expanded"], 990 | "layer0.opacity": 0.0, 991 | "layer1.opacity": 0.71 992 | }, 993 | // Tree view - disclosure button selected 994 | { 995 | "class": "disclosure_button_control", 996 | "parents": [{"class": "tree_row", "attributes": ["selected"]}], 997 | // "attributes": ["hover"], 998 | "layer0.opacity": 1.0, 999 | "layer1.opacity": 0.0 1000 | }, 1001 | // Tree view - disclosure button expanded and selected 1002 | { 1003 | "class": "disclosure_button_control", 1004 | "parents": [{"class": "tree_row", "attributes": ["selected"]}], 1005 | "attributes": ["expanded"], 1006 | "layer0.opacity": 0.0, 1007 | "layer1.opacity": 1.0 1008 | }, 1009 | // Tree view - row 1010 | { 1011 | "class": "tree_row", 1012 | "layer0.tint": [44, 49, 58], 1013 | "layer0.opacity": 0.0, 1014 | "layer0.inner_margin": [1, 1] 1015 | }, 1016 | // Tree view - row selected 1017 | { 1018 | "class": "tree_row", 1019 | "attributes": ["selected"], 1020 | "layer0.opacity": 1.0 1021 | }, 1022 | // Tree view - close button 1023 | { 1024 | "class": "close_button", 1025 | "content_margin": [8, 8], 1026 | "layer0.texture": "Theme - One Dark/assets/open_files_close.png", 1027 | "layer1.texture": "Theme - One Dark/assets/open_files_dirty.png", 1028 | "layer0.opacity": 0.71, 1029 | "layer1.opacity": 0.0, 1030 | "layer0.inner_margin": 0, 1031 | "layer1.inner_margin": 0 1032 | }, 1033 | // Tree view - close button selected 1034 | { 1035 | "class": "close_button", 1036 | "parents": [{"class": "tree_row", "attributes": ["selected"]}], 1037 | "layer0.opacity": 1.0, 1038 | "layer1.opacity": 0.0 1039 | }, 1040 | // Tree view - close button dirty 1041 | { 1042 | "class": "close_button", 1043 | "attributes": ["dirty"], 1044 | "layer0.opacity": 0.0, 1045 | "layer1.opacity": 1.0 1046 | }, 1047 | // Tree view - close button hover 1048 | { 1049 | "class": "close_button", 1050 | "attributes": ["hover"], 1051 | "layer0.opacity": 0.71, 1052 | "layer1.opacity": 0.0 1053 | }, 1054 | // Tree view - close button selected and hover 1055 | { 1056 | "class": "close_button", 1057 | "parents": [{"class": "tree_row", "attributes": ["selected"]}], 1058 | "attributes": ["hover"], 1059 | "layer0.opacity": 1.0, 1060 | "layer1.opacity": 0.0 1061 | }, 1062 | // Tree view - close button pressed 1063 | { 1064 | "class": "close_button", 1065 | "attributes": ["pressed"], 1066 | "layer0.opacity": 0.4, 1067 | "layer1.opacity": 0.0 1068 | }, 1069 | // Tree view - label 1070 | { 1071 | "class": "sidebar_label", 1072 | "color": [157, 165, 180], 1073 | "font.bold": false, 1074 | "font.size": 12, 1075 | "font.italic": false, 1076 | "shadow_color": [0, 0, 0, 0], 1077 | "shadow_offset": [0, 0] 1078 | }, 1079 | // Tree view - label selected 1080 | { 1081 | "class": "sidebar_label", 1082 | "parents": [{"class": "tree_row", "attributes": ["selected"]}], 1083 | "color": [215, 218, 224], 1084 | "shadow_color": [0, 0, 0, 0], 1085 | "shadow_offset": [0, 0] 1086 | }, 1087 | // Tree view - label bold 1088 | { 1089 | "class": "sidebar_label", 1090 | "parents": [{"class": "tree_row", "attributes": ["expandable"]}], 1091 | "settings": ["bold_folder_labels"], 1092 | "font.bold": false 1093 | }, 1094 | // Tree view - label transient 1095 | { 1096 | "class": "sidebar_label", 1097 | "settings": ["!sublime_text_2", "!one_dark_sublime_text_2"], 1098 | "attributes": ["transient"], 1099 | "font.italic": true 1100 | }, 1101 | // Tree view - file icon 1102 | { 1103 | "class": "icon_file_type", 1104 | "content_margin": [8, 8], 1105 | // layer0.texture is filled in by code with the relevant icon name 1106 | "layer0.opacity": 0.71 1107 | }, 1108 | // Tree view - file icon selected 1109 | { 1110 | "class": "icon_file_type", 1111 | "parents": [{"class": "tree_row", "attributes": ["selected"]}], 1112 | "layer0.opacity": 1.0 1113 | }, 1114 | // Tree view - folder icon 1115 | { 1116 | "class": "icon_folder", 1117 | "content_margin": [8, 8], 1118 | "layer0.texture": "Theme - One Dark/icons/tree_view_folder.png", 1119 | "layer0.opacity": 0.71 1120 | }, 1121 | // Tree view - folder icon selected 1122 | { 1123 | "class": "icon_folder", 1124 | "parents": [{"class": "tree_row", "attributes": ["selected"]}], 1125 | "layer0.opacity": 1.0 1126 | }, 1127 | // Tree view - folder icons expanded 1128 | { 1129 | "class": "icon_folder", 1130 | "parents":[{ "class": "tree_row", "attributes": ["expanded"]}], 1131 | "layer0.texture": "Theme - One Dark/icons/tree_view_folder_open.png" 1132 | }, 1133 | // Tree view - folder loading 1134 | { 1135 | "class": "icon_folder_loading", 1136 | "content_margin": [8, 8], 1137 | "layer0.texture": "Theme - One Dark/icons/tree_view_folder.png", 1138 | "layer0.opacity": 0.0 1139 | }, 1140 | // Tree view - folder dup icon 1141 | { 1142 | "class": "icon_folder_dup", 1143 | "content_margin": [8, 8], 1144 | "layer0.texture": "Theme - One Dark/icons/tree_view_folder_dup.png", 1145 | "layer0.opacity": 0.71 1146 | }, 1147 | // Tree view - folder dup icon selected 1148 | { 1149 | "class": "icon_folder_dup", 1150 | "parents": [{"class": "tree_row", "attributes": ["selected"]}], 1151 | "layer0.opacity": 1.0 1152 | }, 1153 | // Window - background 1154 | { 1155 | "class": "title_bar", 1156 | "settings": ["!one_dark_native_title_bar"], 1157 | "bg": [43, 48, 59], 1158 | "fg": [167, 175, 190] 1159 | }, 1160 | // Font Fira Light 1161 | { 1162 | "class": "sidebar_label", 1163 | "settings": ["one_dark_sidebar_font_fira_light"], 1164 | "font.face": "Fira Code Light" 1165 | }, 1166 | // Font Fira 1167 | { 1168 | "class": "sidebar_label", 1169 | "settings": ["one_dark_sidebar_font_fira"], 1170 | "font.face": "Fira Code" 1171 | }, 1172 | // Increase sidebar font size 1173 | { 1174 | "class": "sidebar_label", 1175 | "settings": ["one_dark_bigger_sidebar"], 1176 | "font.size": 14, 1177 | }, 1178 | ] 1179 | -------------------------------------------------------------------------------- /One Dark.tmTheme: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | author 6 | IceTimux / Andres Michel 7 | name 8 | One Dark 9 | settings 10 | 11 | 12 | settings 13 | 14 | foreground 15 | #6c7079 16 | background 17 | #2B303B 18 | invisibles 19 | #747369 20 | caret 21 | #528bff 22 | lineHighlight 23 | #8cc2fc0b 24 | bracketContentsOptions 25 | underline 26 | bracketContentsForeground 27 | #528bff 28 | bracketsOptions 29 | underline 30 | bracketsForeground 31 | #528bff 32 | tagsOptions 33 | underline 34 | tagsForeground 35 | #528bff 36 | findHighlight 37 | #314365 38 | findHighlightForeground 39 | #528bff 40 | gutter 41 | #2B303B 42 | gutterForeground 43 | #636d8388 44 | selection 45 | #bbccf51b 46 | selectionBorder 47 | #bbccf51b 48 | inactiveSelection 49 | #bbccf51b 50 | guide 51 | #464c55 52 | activeGuide 53 | #464c55 54 | stackGuide 55 | #464c55 56 | highlight 57 | #528bff80 58 | highlightForeground 59 | #528bff 60 | shadow 61 | #2B303B 62 | shadowWidth 63 | 1 64 | 65 | 66 | 67 | name 68 | Text and source 69 | scope 70 | text, source 71 | settings 72 | 73 | foreground 74 | #abb2bf 75 | 76 | 77 | 78 | name 79 | Text 80 | scope 81 | variable.parameter.function 82 | settings 83 | 84 | foreground 85 | #adb7c9 86 | 87 | 88 | 89 | name 90 | Comments 91 | scope 92 | comment, punctuation.definition.comment 93 | settings 94 | 95 | foreground 96 | #5f697a 97 | fontStyle 98 | italic 99 | 100 | 101 | 102 | name 103 | Delimiters 104 | scope 105 | none 106 | settings 107 | 108 | foreground 109 | #adb7c9 110 | 111 | 112 | 113 | name 114 | Operators 115 | scope 116 | keyword.operator 117 | settings 118 | 119 | foreground 120 | #adb7c9 121 | 122 | 123 | 124 | name 125 | Keywords 126 | scope 127 | keyword 128 | settings 129 | 130 | foreground 131 | #cd74e8 132 | 133 | 134 | 135 | name 136 | Variables 137 | scope 138 | variable 139 | settings 140 | 141 | foreground 142 | #eb6772 143 | 144 | 145 | 146 | name 147 | Functions 148 | scope 149 | entity.name.function, meta.require, support.function.any-method 150 | settings 151 | 152 | foreground 153 | #5cb3fa 154 | 155 | 156 | 157 | name 158 | Classes 159 | scope 160 | support.class, entity.name.class, entity.name.type.class 161 | settings 162 | 163 | foreground 164 | #f0c678 165 | 166 | 167 | 168 | name 169 | Classes 170 | scope 171 | meta.class 172 | settings 173 | 174 | foreground 175 | #adb7c9 176 | 177 | 178 | 179 | name 180 | Methods 181 | scope 182 | keyword.other.special-method 183 | settings 184 | 185 | foreground 186 | #5cb3fa 187 | 188 | 189 | 190 | name 191 | Storage 192 | scope 193 | storage 194 | settings 195 | 196 | foreground 197 | #cd74e8 198 | 199 | 200 | 201 | name 202 | Support 203 | scope 204 | support.function 205 | settings 206 | 207 | foreground 208 | #5ebfcc 209 | 210 | 211 | 212 | name 213 | Strings, Inherited Class 214 | scope 215 | string, constant.other.symbol, entity.other.inherited-class 216 | settings 217 | 218 | foreground 219 | #9acc76 220 | 221 | 222 | 223 | name 224 | Integers 225 | scope 226 | constant.numeric 227 | settings 228 | 229 | foreground 230 | #db9d63 231 | 232 | 233 | 234 | name 235 | Floats 236 | scope 237 | none 238 | settings 239 | 240 | foreground 241 | #db9d63 242 | 243 | 244 | 245 | name 246 | Boolean 247 | scope 248 | none 249 | settings 250 | 251 | foreground 252 | #db9d63 253 | 254 | 255 | 256 | name 257 | Constants 258 | scope 259 | constant 260 | settings 261 | 262 | foreground 263 | #db9d63 264 | 265 | 266 | 267 | name 268 | Tags 269 | scope 270 | entity.name.tag 271 | settings 272 | 273 | foreground 274 | #eb6772 275 | 276 | 277 | 278 | name 279 | Attributes 280 | scope 281 | entity.other.attribute-name 282 | settings 283 | 284 | foreground 285 | #db9d63 286 | 287 | 288 | 289 | name 290 | Attribute IDs 291 | scope 292 | entity.other.attribute-name.id, punctuation.definition.entity 293 | settings 294 | 295 | foreground 296 | #db9d63 297 | 298 | 299 | 300 | name 301 | Selector 302 | scope 303 | meta.selector 304 | settings 305 | 306 | foreground 307 | #cd74e8 308 | 309 | 310 | 311 | name 312 | Values 313 | scope 314 | none 315 | settings 316 | 317 | foreground 318 | #db9d63 319 | 320 | 321 | 322 | name 323 | Headings 324 | scope 325 | markup.heading punctuation.definition.heading, entity.name.section 326 | settings 327 | 328 | fontStyle 329 | 330 | foreground 331 | #5cb3fa 332 | 333 | 334 | 335 | name 336 | Units 337 | scope 338 | keyword.other.unit 339 | settings 340 | 341 | foreground 342 | #db9d63 343 | 344 | 345 | 346 | name 347 | Bold 348 | scope 349 | markup.bold, punctuation.definition.bold 350 | settings 351 | 352 | foreground 353 | #f0c678 354 | 355 | 356 | 357 | name 358 | Italic 359 | scope 360 | markup.italic, punctuation.definition.italic 361 | settings 362 | 363 | foreground 364 | #cd74e8 365 | 366 | 367 | 368 | name 369 | Code 370 | scope 371 | markup.raw.inline 372 | settings 373 | 374 | foreground 375 | #9acc76 376 | 377 | 378 | 379 | name 380 | Link Text 381 | scope 382 | string.other.link, punctuation.definition.string.end.markdown 383 | settings 384 | 385 | foreground 386 | #eb6772 387 | 388 | 389 | 390 | name 391 | Link Url 392 | scope 393 | meta.link 394 | settings 395 | 396 | foreground 397 | #db9d63 398 | 399 | 400 | 401 | name 402 | Lists 403 | scope 404 | markup.list 405 | settings 406 | 407 | foreground 408 | #eb6772 409 | 410 | 411 | 412 | name 413 | Quotes 414 | scope 415 | markup.quote 416 | settings 417 | 418 | foreground 419 | #db9d63 420 | 421 | 422 | 423 | name 424 | Separator 425 | scope 426 | meta.separator 427 | settings 428 | 429 | background 430 | #515151 431 | foreground 432 | #adb7c9 433 | 434 | 435 | 436 | name 437 | Inserted 438 | scope 439 | markup.inserted 440 | settings 441 | 442 | foreground 443 | #9acc76 444 | 445 | 446 | 447 | name 448 | Deleted 449 | scope 450 | markup.deleted 451 | settings 452 | 453 | foreground 454 | #eb6772 455 | 456 | 457 | 458 | name 459 | Changed 460 | scope 461 | markup.changed 462 | settings 463 | 464 | foreground 465 | #cd74e8 466 | 467 | 468 | 469 | name 470 | Colors 471 | scope 472 | constant.other.color 473 | settings 474 | 475 | foreground 476 | #5ebfcc 477 | 478 | 479 | 480 | name 481 | Regular Expressions 482 | scope 483 | string.regexp 484 | settings 485 | 486 | foreground 487 | #5ebfcc 488 | 489 | 490 | 491 | name 492 | Escape Characters 493 | scope 494 | constant.character.escape 495 | settings 496 | 497 | foreground 498 | #5ebfcc 499 | 500 | 501 | 502 | name 503 | Embedded 504 | scope 505 | punctuation.section.embedded, variable.interpolation 506 | settings 507 | 508 | foreground 509 | #c94e42 510 | 511 | 512 | 513 | name 514 | Illegal 515 | scope 516 | invalid.illegal 517 | settings 518 | 519 | foreground 520 | #ffffff 521 | background 522 | #e05252 523 | 524 | 525 | 526 | name 527 | Broken 528 | scope 529 | invalid.broken 530 | settings 531 | 532 | background 533 | #f99157 534 | foreground 535 | #2d2d2d 536 | 537 | 538 | 539 | name 540 | Deprecated 541 | scope 542 | invalid.deprecated 543 | settings 544 | 545 | background 546 | #d27b53 547 | foreground 548 | #2c323d 549 | 550 | 551 | 552 | name 553 | Unimplemented 554 | scope 555 | invalid.unimplemented 556 | settings 557 | 558 | background 559 | #747369 560 | foreground 561 | #2c323d 562 | 563 | 564 | 565 | name 566 | Json key 567 | scope 568 | source.json meta.structure.dictionary.json string.quoted.double.json 569 | settings 570 | 571 | foreground 572 | #eb6772 573 | 574 | 575 | 576 | name 577 | Json value 578 | scope 579 | source.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json 580 | settings 581 | 582 | foreground 583 | #9acc76 584 | 585 | 586 | 587 | name 588 | json sub key 589 | scope 590 | source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.quoted.double.json 591 | settings 592 | 593 | foreground 594 | #eb6772 595 | 596 | 597 | 598 | name 599 | Json sub value 600 | scope 601 | source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json 602 | settings 603 | 604 | foreground 605 | #9acc76 606 | 607 | 608 | 609 | name 610 | laravel blade tag 611 | scope 612 | text.html.laravel-blade source.php.embedded.line.html entity.name.tag.laravel-blade 613 | settings 614 | 615 | foreground 616 | #cd74e8 617 | 618 | 619 | 620 | name 621 | laravel blade @ 622 | scope 623 | text.html.laravel-blade source.php.embedded.line.html support.constant.laravel-blade 624 | settings 625 | 626 | foreground 627 | #cd74e8 628 | 629 | 630 | 631 | name 632 | python function parameter 633 | scope 634 | source.python meta.function.python meta.function.parameters.python variable.parameter.function.python 635 | settings 636 | 637 | foreground 638 | #db9d63 639 | 640 | 641 | 642 | name 643 | python meta function 644 | scope 645 | source.python meta.function-call.python support.type.python 646 | settings 647 | 648 | foreground 649 | #5ebfcc 650 | 651 | 652 | 653 | name 654 | python logical keyword 655 | scope 656 | source.python keyword.operator.logical.python 657 | settings 658 | 659 | foreground 660 | #cd74e8 661 | 662 | 663 | 664 | name 665 | python class ( begin 666 | scope 667 | source.python meta.class.python punctuation.definition.inheritance.begin.python 668 | settings 669 | 670 | foreground 671 | #f0c678 672 | 673 | 674 | 675 | name 676 | python class ) end 677 | scope 678 | source.python meta.class.python punctuation.definition.inheritance.end.python 679 | settings 680 | 681 | foreground 682 | #f0c678 683 | 684 | 685 | 686 | name 687 | python function call parameter name 688 | scope 689 | source.python meta.function-call.python meta.function-call.arguments.python variable.parameter.function.python 690 | settings 691 | 692 | foreground 693 | #db9d63 694 | 695 | 696 | 697 | name 698 | php fcuntion constants 699 | scope 700 | text.html.basic source.php.embedded.block.html support.constant.std.php 701 | settings 702 | 703 | foreground 704 | #db9d63 705 | 706 | 707 | 708 | name 709 | php namespace name 710 | scope 711 | text.html.basic source.php.embedded.block.html meta.namespace.php entity.name.type.namespace.php 712 | settings 713 | 714 | foreground 715 | #f0c678 716 | 717 | 718 | 719 | name 720 | javascript meta constant 721 | scope 722 | source.js meta.function.js support.constant.js 723 | settings 724 | 725 | foreground 726 | #db9d63 727 | 728 | 729 | 730 | name 731 | php namespace in top 732 | scope 733 | text.html.basic` source.php.embedded.block.html constant.other.php 734 | settings 735 | 736 | foreground 737 | #cd74e8 738 | 739 | 740 | 741 | name 742 | php namespace name in top 743 | scope 744 | text.html.basic source.php.embedded.block.html support.other.namespace.php 745 | settings 746 | 747 | foreground 748 | #db9d63 749 | 750 | 751 | 752 | name 753 | latex label names 754 | scope 755 | text.tex.latex meta.function.environment.math.latex string.other.math.block.environment.latex meta.definition.label.latex variable.parameter.definition.label.latex 756 | settings 757 | 758 | foreground 759 | #adb7c9 760 | 761 | 762 | 763 | name 764 | latex italic emph 765 | scope 766 | text.tex.latex meta.function.emph.latex markup.italic.emph.latex 767 | settings 768 | 769 | fontStyle 770 | italic 771 | foreground 772 | #cd74e8 773 | 774 | 775 | 776 | name 777 | subl_new js vars 778 | scope 779 | source.js variable.other.readwrite.js 780 | settings 781 | 782 | foreground 783 | #adb7c9 784 | 785 | 786 | 787 | name 788 | new_subl js $ 789 | scope 790 | source.js meta.function-call.with-arguments.js variable.function.js 791 | settings 792 | 793 | foreground 794 | #adb7c9 795 | 796 | 797 | 798 | name 799 | new_subl js call method 800 | scope 801 | source.js meta.group.braces.round meta.group.braces.curly meta.function-call.method.without-arguments.js variable.function.js 802 | settings 803 | 804 | foreground 805 | #adb7c9 806 | 807 | 808 | 809 | name 810 | new_subl e js 811 | scope 812 | source.js meta.group.braces.round meta.group.braces.curly variable.other.object.js 813 | settings 814 | 815 | foreground 816 | #adb7c9 817 | 818 | 819 | 820 | name 821 | new_subl js key 822 | scope 823 | source.js meta.group.braces.round meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js 824 | settings 825 | 826 | foreground 827 | #adb7c9 828 | 829 | 830 | 831 | name 832 | new_subl obejct key 833 | scope 834 | source.js meta.group.braces.round meta.group.braces.curly constant.other.object.key.js punctuation.separator.key-value.js 835 | settings 836 | 837 | foreground 838 | #adb7c9 839 | 840 | 841 | 842 | name 843 | new_subl js method with args 844 | scope 845 | source.js meta.group.braces.round meta.group.braces.curly meta.function-call.method.with-arguments.js variable.function.js 846 | settings 847 | 848 | foreground 849 | #adb7c9 850 | 851 | 852 | 853 | name 854 | new_subl js variable function 855 | scope 856 | source.js meta.function-call.method.with-arguments.js variable.function.js 857 | settings 858 | 859 | foreground 860 | #adb7c9 861 | 862 | 863 | 864 | name 865 | new_subl variabel function method 866 | scope 867 | source.js meta.function-call.method.without-arguments.js variable.function.js 868 | settings 869 | 870 | foreground 871 | #adb7c9 872 | 873 | 874 | 875 | 876 | 877 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # One Dark theme 2 | A dark Sublime Text theme based on [Atom One Dark UI theme](https://github.com/atom/one-dark-ui). 3 | 4 | ![Sublime Text - One Dark theme](http://i.imgur.com/DyTXxc5.png) 5 | > Color scheme by [IceTimux](https://github.com/IceTimux/one-dark-sublime-text-3-color-scheme) 6 | 7 | ## Installation 8 | 9 | ### Easy 10 | You can install this awesome theme through the [Package Control](https://packagecontrol.io/installation). 11 | 12 | 1. Press cmd/ctrl + shift + p to open the command palette. 13 | 2. Type `Install Package` and press enter. Then search for `Theme - One Dark`. 14 | 15 | ### Manual 16 | 1. Download the [latest release](https://github.com/andresmichel/one-dark-theme/releases/latest), extract and rename the directory to `Theme - One Dark`. 17 | 2. Move the directory inside your packages directory, `Preferences` > `Browse packages`. 18 | 19 | ## Activation 20 | Open your preferences `Preferences` > `Setting - User` and add this lines: 21 | 22 | ```json 23 | "color_scheme": "Packages/Theme - One Dark/One Dark.tmTheme", 24 | "theme": "One Dark.sublime-theme", 25 | "one_dark_sublime_text_2": true // Only for Sublime Text 2 26 | ``` 27 | 28 | ### Recommended settings 29 | ```json 30 | "animation_enabled": false, 31 | "caret_extra_bottom": 1, 32 | "caret_extra_top": 2, 33 | "caret_extra_width": 1, 34 | "caret_style": "blink", 35 | "draw_white_space": "none", 36 | "ensure_newline_at_eof_on_save": true, 37 | "highlight_line": true, 38 | "line_padding_bottom": 1, 39 | "line_padding_top": 2, 40 | "margin": 0, 41 | "match_selection": false, 42 | "tree_animation_enabled": false, 43 | "scroll_past_end": false, 44 | "show_definitions": false, 45 | "show_tab_close_buttons": true // Mandatory if you want to see unsaved files in tab 46 | ``` 47 | 48 | ### Optional settings 49 | ```json 50 | "one_dark_native_title_bar": true, // Only for Mac & Sublime Text 3 >= build 3127 51 | "one_dark_show_scroll_tabs": true, // Only for Sublime Text 3 52 | "one_dark_show_tabs_dropdown": true // Only for Sublime Text 3 53 | "one_dark_bigger_sidebar": true, // Uses font-size 14 for the sidebar 54 | "one_dark_sidebar_font_fira_light": true, // Uses Fira Light for the sidebar 55 | ``` 56 | -------------------------------------------------------------------------------- /Widget - One Dark.sublime-settings: -------------------------------------------------------------------------------- 1 | { 2 | "color_scheme": "Packages/Theme - One Dark/Widget - One Dark.tmTheme" 3 | } 4 | -------------------------------------------------------------------------------- /Widget - One Dark.tmTheme: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | author 6 | Andres Michel 7 | name 8 | One Dark - Input 9 | settings 10 | 11 | 12 | settings 13 | 14 | foreground 15 | #d7dae0 16 | background 17 | #1b1d23 18 | caret 19 | #528bff 20 | selection 21 | #39548a 22 | selectionBorder 23 | #39548a 24 | inactiveSelection 25 | #2a3956 26 | shadow 27 | #1b1d23 28 | shadowWidth 29 | 1 30 | 31 | 32 | 33 | name 34 | Entity 35 | scope 36 | entity 37 | settings 38 | 39 | foreground 40 | #d19a66 41 | 42 | 43 | 44 | name 45 | Entity name 46 | scope 47 | entity.name 48 | settings 49 | 50 | foreground 51 | #e5c07b 52 | 53 | 54 | 55 | name 56 | Entity other inherited-class 57 | scope 58 | entity.other.inherited-class 59 | settings 60 | 61 | foreground 62 | #98c379 63 | 64 | 65 | 66 | name 67 | Entity name section 68 | scope 69 | entity.name.section 70 | settings 71 | 72 | foreground 73 | #e06c75 74 | 75 | 76 | 77 | name 78 | Entity name tag 79 | scope 80 | entity.name.tag 81 | settings 82 | 83 | foreground 84 | #e06c75 85 | 86 | 87 | 88 | name 89 | Entity other attrbute-name 90 | scope 91 | entity.other.attrbute-name 92 | settings 93 | 94 | foreground 95 | blue 96 | 97 | 98 | 99 | name 100 | Variable 101 | scope 102 | variable 103 | settings 104 | 105 | foreground 106 | #abb2bf 107 | 108 | 109 | 110 | name 111 | Variable language 112 | scope 113 | variable.language 114 | settings 115 | 116 | foreground 117 | #e06c75 118 | 119 | 120 | 121 | name 122 | Variable parameter 123 | scope 124 | variable.parameter 125 | settings 126 | 127 | foreground 128 | #abb2bf 129 | 130 | 131 | 132 | name 133 | Variable function 134 | scope 135 | variable.function 136 | settings 137 | 138 | foreground 139 | #61afef 140 | 141 | 142 | 143 | name 144 | Constant 145 | scope 146 | constant 147 | settings 148 | 149 | foreground 150 | #d19a66 151 | 152 | 153 | 154 | name 155 | Constant numeric 156 | scope 157 | constant.numeric 158 | settings 159 | 160 | foreground 161 | #d19a66 162 | 163 | 164 | 165 | name 166 | Constant language 167 | scope 168 | constant.language 169 | settings 170 | 171 | foreground 172 | #d19a66 173 | 174 | 175 | 176 | name 177 | Constant character escape 178 | scope 179 | constant.character.escape 180 | settings 181 | 182 | foreground 183 | #56b6c2 184 | 185 | 186 | 187 | name 188 | Storage type 189 | scope 190 | storage.type 191 | settings 192 | 193 | foreground 194 | #c678dd 195 | 196 | 197 | 198 | name 199 | Storage modifier 200 | scope 201 | storage.modifier 202 | settings 203 | 204 | foreground 205 | #c678dd 206 | 207 | 208 | 209 | name 210 | Support 211 | scope 212 | support 213 | settings 214 | 215 | foreground 216 | #e5c07b 217 | 218 | 219 | 220 | name 221 | Keyword 222 | scope 223 | keyword 224 | settings 225 | 226 | foreground 227 | #d19a66 228 | 229 | 230 | 231 | name 232 | Keyword control 233 | scope 234 | keyword.control 235 | settings 236 | 237 | foreground 238 | #c678dd 239 | 240 | 241 | 242 | name 243 | Keyword operator 244 | scope 245 | keyword.operator 246 | settings 247 | 248 | foreground 249 | #56b6c2 250 | 251 | 252 | 253 | name 254 | String 255 | scope 256 | string 257 | settings 258 | 259 | foreground 260 | #98c379 261 | 262 | 263 | 264 | name 265 | Comment 266 | scope 267 | comment 268 | settings 269 | 270 | fontStyle 271 | italic 272 | foreground 273 | #5c6370 274 | 275 | 276 | 277 | name 278 | Invalid 279 | scope 280 | invalid 281 | settings 282 | 283 | foreground 284 | #ffffff 285 | background 286 | #e05252 287 | 288 | 289 | 290 | 291 | 292 | -------------------------------------------------------------------------------- /assets/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/arrow_down.png -------------------------------------------------------------------------------- /assets/arrow_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/arrow_down@2x.png -------------------------------------------------------------------------------- /assets/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/arrow_right.png -------------------------------------------------------------------------------- /assets/arrow_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/arrow_right@2x.png -------------------------------------------------------------------------------- /assets/autocomplete_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/autocomplete_bg.png -------------------------------------------------------------------------------- /assets/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/close.png -------------------------------------------------------------------------------- /assets/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/close@2x.png -------------------------------------------------------------------------------- /assets/close_dirty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/close_dirty.png -------------------------------------------------------------------------------- /assets/close_dirty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/close_dirty@2x.png -------------------------------------------------------------------------------- /assets/close_dirty_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/close_dirty_hover.png -------------------------------------------------------------------------------- /assets/close_dirty_hover@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/close_dirty_hover@2x.png -------------------------------------------------------------------------------- /assets/close_dirty_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/close_dirty_pressed.png -------------------------------------------------------------------------------- /assets/close_dirty_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/close_dirty_pressed@2x.png -------------------------------------------------------------------------------- /assets/close_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/close_hover.png -------------------------------------------------------------------------------- /assets/close_hover@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/close_hover@2x.png -------------------------------------------------------------------------------- /assets/close_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/close_pressed.png -------------------------------------------------------------------------------- /assets/close_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/close_pressed@2x.png -------------------------------------------------------------------------------- /assets/close_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/close_unselected.png -------------------------------------------------------------------------------- /assets/close_unselected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/close_unselected@2x.png -------------------------------------------------------------------------------- /assets/code_folding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/code_folding.png -------------------------------------------------------------------------------- /assets/code_folding_expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/code_folding_expanded.png -------------------------------------------------------------------------------- /assets/code_folding_expanded_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/code_folding_expanded_hover.png -------------------------------------------------------------------------------- /assets/code_folding_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/code_folding_hover.png -------------------------------------------------------------------------------- /assets/dirty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/dirty.png -------------------------------------------------------------------------------- /assets/dirty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/dirty@2x.png -------------------------------------------------------------------------------- /assets/dropdown_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/dropdown_arrow.png -------------------------------------------------------------------------------- /assets/find_panel_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/find_panel_bg.png -------------------------------------------------------------------------------- /assets/find_panel_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/find_panel_button.png -------------------------------------------------------------------------------- /assets/find_panel_button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/find_panel_button_hover.png -------------------------------------------------------------------------------- /assets/find_panel_button_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/find_panel_button_pressed.png -------------------------------------------------------------------------------- /assets/find_panel_button_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/find_panel_button_selected.png -------------------------------------------------------------------------------- /assets/find_panel_left_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/find_panel_left_button.png -------------------------------------------------------------------------------- /assets/find_panel_left_button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/find_panel_left_button_hover.png -------------------------------------------------------------------------------- /assets/find_panel_left_button_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/find_panel_left_button_pressed.png -------------------------------------------------------------------------------- /assets/find_panel_left_button_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/find_panel_left_button_selected.png -------------------------------------------------------------------------------- /assets/find_panel_middle_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/find_panel_middle_button.png -------------------------------------------------------------------------------- /assets/find_panel_middle_button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/find_panel_middle_button_hover.png -------------------------------------------------------------------------------- /assets/find_panel_middle_button_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/find_panel_middle_button_pressed.png -------------------------------------------------------------------------------- /assets/find_panel_middle_button_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/find_panel_middle_button_selected.png -------------------------------------------------------------------------------- /assets/find_panel_right_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/find_panel_right_button.png -------------------------------------------------------------------------------- /assets/find_panel_right_button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/find_panel_right_button_hover.png -------------------------------------------------------------------------------- /assets/find_panel_right_button_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/find_panel_right_button_pressed.png -------------------------------------------------------------------------------- /assets/find_panel_right_button_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/find_panel_right_button_selected.png -------------------------------------------------------------------------------- /assets/goto_panel_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/goto_panel_bg.png -------------------------------------------------------------------------------- /assets/goto_panel_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/goto_panel_row.png -------------------------------------------------------------------------------- /assets/goto_panel_row_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/goto_panel_row_selected.png -------------------------------------------------------------------------------- /assets/input_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/input_bg.png -------------------------------------------------------------------------------- /assets/input_bg_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/input_bg_hover.png -------------------------------------------------------------------------------- /assets/open_files_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/open_files_close.png -------------------------------------------------------------------------------- /assets/open_files_dirty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/open_files_dirty.png -------------------------------------------------------------------------------- /assets/scroll_tabs_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/scroll_tabs_left.png -------------------------------------------------------------------------------- /assets/scroll_tabs_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/scroll_tabs_right.png -------------------------------------------------------------------------------- /assets/scrollbar_thumb_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/scrollbar_thumb_horizontal.png -------------------------------------------------------------------------------- /assets/scrollbar_thumb_horizontal_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/scrollbar_thumb_horizontal_hover.png -------------------------------------------------------------------------------- /assets/scrollbar_thumb_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/scrollbar_thumb_vertical.png -------------------------------------------------------------------------------- /assets/scrollbar_thumb_vertical_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/scrollbar_thumb_vertical_hover.png -------------------------------------------------------------------------------- /assets/status_bar_panels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/status_bar_panels.png -------------------------------------------------------------------------------- /assets/status_bar_panels@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/status_bar_panels@2x.png -------------------------------------------------------------------------------- /assets/tab_panel_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/tab_panel_bg.png -------------------------------------------------------------------------------- /assets/tab_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/tab_selected.png -------------------------------------------------------------------------------- /assets/tab_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/tab_unselected.png -------------------------------------------------------------------------------- /assets/tooltip_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/tooltip_bg.png -------------------------------------------------------------------------------- /assets/tooltip_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/assets/tooltip_bg@2x.png -------------------------------------------------------------------------------- /icons/file_type_binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/file_type_binary.png -------------------------------------------------------------------------------- /icons/file_type_binary@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/file_type_binary@2x.png -------------------------------------------------------------------------------- /icons/file_type_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/file_type_default.png -------------------------------------------------------------------------------- /icons/file_type_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/file_type_default@2x.png -------------------------------------------------------------------------------- /icons/file_type_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/file_type_image.png -------------------------------------------------------------------------------- /icons/file_type_image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/file_type_image@2x.png -------------------------------------------------------------------------------- /icons/file_type_markup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/file_type_markup.png -------------------------------------------------------------------------------- /icons/file_type_markup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/file_type_markup@2x.png -------------------------------------------------------------------------------- /icons/file_type_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/file_type_pdf.png -------------------------------------------------------------------------------- /icons/file_type_pdf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/file_type_pdf@2x.png -------------------------------------------------------------------------------- /icons/file_type_source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/file_type_source.png -------------------------------------------------------------------------------- /icons/file_type_source@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/file_type_source@2x.png -------------------------------------------------------------------------------- /icons/file_type_source_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/file_type_source_alt.png -------------------------------------------------------------------------------- /icons/file_type_source_alt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/file_type_source_alt@2x.png -------------------------------------------------------------------------------- /icons/file_type_symlink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/file_type_symlink.png -------------------------------------------------------------------------------- /icons/file_type_symlink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/file_type_symlink@2x.png -------------------------------------------------------------------------------- /icons/file_type_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/file_type_text.png -------------------------------------------------------------------------------- /icons/file_type_text@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/file_type_text@2x.png -------------------------------------------------------------------------------- /icons/file_type_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/file_type_zip.png -------------------------------------------------------------------------------- /icons/file_type_zip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/file_type_zip@2x.png -------------------------------------------------------------------------------- /icons/find_panel_case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/find_panel_case.png -------------------------------------------------------------------------------- /icons/find_panel_case@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/find_panel_case@2x.png -------------------------------------------------------------------------------- /icons/find_panel_context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/find_panel_context.png -------------------------------------------------------------------------------- /icons/find_panel_context@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/find_panel_context@2x.png -------------------------------------------------------------------------------- /icons/find_panel_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/find_panel_highlight.png -------------------------------------------------------------------------------- /icons/find_panel_highlight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/find_panel_highlight@2x.png -------------------------------------------------------------------------------- /icons/find_panel_in_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/find_panel_in_selection.png -------------------------------------------------------------------------------- /icons/find_panel_in_selection@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/find_panel_in_selection@2x.png -------------------------------------------------------------------------------- /icons/find_panel_preserve_case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/find_panel_preserve_case.png -------------------------------------------------------------------------------- /icons/find_panel_preserve_case@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/find_panel_preserve_case@2x.png -------------------------------------------------------------------------------- /icons/find_panel_regex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/find_panel_regex.png -------------------------------------------------------------------------------- /icons/find_panel_regex@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/find_panel_regex@2x.png -------------------------------------------------------------------------------- /icons/find_panel_reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/find_panel_reverse.png -------------------------------------------------------------------------------- /icons/find_panel_reverse@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/find_panel_reverse@2x.png -------------------------------------------------------------------------------- /icons/find_panel_use_buffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/find_panel_use_buffer.png -------------------------------------------------------------------------------- /icons/find_panel_use_buffer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/find_panel_use_buffer@2x.png -------------------------------------------------------------------------------- /icons/find_panel_whole_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/find_panel_whole_word.png -------------------------------------------------------------------------------- /icons/find_panel_whole_word@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/find_panel_whole_word@2x.png -------------------------------------------------------------------------------- /icons/find_panel_wrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/find_panel_wrap.png -------------------------------------------------------------------------------- /icons/find_panel_wrap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/find_panel_wrap@2x.png -------------------------------------------------------------------------------- /icons/tree_view_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/tree_view_folder.png -------------------------------------------------------------------------------- /icons/tree_view_folder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/tree_view_folder@2x.png -------------------------------------------------------------------------------- /icons/tree_view_folder_dup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/tree_view_folder_dup.png -------------------------------------------------------------------------------- /icons/tree_view_folder_dup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/tree_view_folder_dup@2x.png -------------------------------------------------------------------------------- /icons/tree_view_folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/tree_view_folder_open.png -------------------------------------------------------------------------------- /icons/tree_view_folder_open@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresmichel/one-dark-theme/9ecab1531c983680897b9a77190262561ce4fe0e/icons/tree_view_folder_open@2x.png --------------------------------------------------------------------------------