├── README.md ├── Spacefunk (Blue Monday).sublime-theme ├── Spacefunk (Grey Tuesday).sublime-theme ├── Spacefunk ├── Widget - Spacefunk (Blue Monday).stTheme ├── Widget - Spacefunk (Blue Monday).sublime-settings ├── Widget - Spacefunk (Grey Tuesday).stTheme ├── Widget - Spacefunk (Grey Tuesday).sublime-settings ├── buffer.png ├── buffer@2x.png ├── casesens.png ├── casesens@2x.png ├── circle.png ├── circle@2x.png ├── close.png ├── close@2x.png ├── context.png ├── context@2x.png ├── folder-closed.png ├── folder-closed@2x.png ├── folder-open.png ├── folder-open@2x.png ├── highlight.png ├── highlight@2x.png ├── regex.png ├── regex@2x.png ├── reverse.png ├── reverse@2x.png ├── selection.png ├── selection@2x.png ├── wholeword.png ├── wholeword@2x.png ├── wrap.png └── wrap@2x.png ├── messages.json └── messages ├── 1.0.1.txt ├── 1.0.2.txt ├── 1.0.3.txt ├── 1.0.4.txt ├── 1.0.5.txt ├── 1.0.6.txt ├── 1.0.7.txt ├── 1.0.8.txt ├── 1.0.9.txt └── install.txt /README.md: -------------------------------------------------------------------------------- 1 | # Spacefunk 2 | 3 | Spacefunk is a minimalistic theme for Sublime Text, based on [kkga's](https://github.com/kkga/spacegray) Spacegray theme. 4 | 5 | ## Install 6 | 7 | ### Via Package Control 8 | 9 | Search for `Theme - Spacefunk` in [Sublime Package Control](https://sublime.wbond.net). 10 | 11 | ### Manual 12 | 13 | 1. [Download the .zip](https://github.com/Twiebie/ST-Spacefunk/archive/master.zip) 14 | 2. Unzip and rename the folder to `Theme - Spacefunk` 15 | 3. Copy the folder to your `Packages` directory. Quickly find your directory via 16 | `Preferences -> Browse Packages...`. 17 | 18 | ## Setup 19 | 20 | You can activate the theme and its colour scheme by editing your user preferences. 21 | Go to: `Preferences -> Settings - User`. 22 | 23 | ### Example settings 24 | #### Blue Monday: 25 | ``` 26 | { 27 | "theme": "Spacefunk (Blue Monday).sublime-theme", 28 | } 29 | ``` 30 | #### Grey Tuesday 31 | ``` 32 | { 33 | "theme": "Spacefunk (Grey Tuesday).sublime-theme", 34 | } 35 | ``` 36 | 37 | ### Additional customization 38 | If you prefer a lighter version of the sidebar you can add the following line to your preferences file. This is available for both versions of Spacefunk. 39 | 40 | ``` 41 | { 42 | "spacefunk_sidebar_light": true 43 | } 44 | ``` 45 | Restart Sublime Text to make sure all changes are applied. Enjoy! 46 | 47 | #### Future Funk - Colour schemes 48 | I've created 2 colour schemes that fit well with the theme. 49 | They are maintained separately from Spacefunk. 50 | 51 | Find them on: [Package Control](https://sublime.wbond.net/packages/Future%20Funk%20-%20Color%20Scheme) or [Github](https://github.com/Twiebie/ST-FutureFunk). 52 | 53 | ### Screenshots 54 | #### Blue Monday 55 | ![image](http://i.imgur.com/tkbsNlI.png) 56 | 57 | #### Grey Tuesday 58 | ![image](http://i.imgur.com/jCAd3Af.png) 59 | -------------------------------------------------------------------------------- /Spacefunk (Blue Monday).sublime-theme: -------------------------------------------------------------------------------- 1 | [ 2 | // 3 | // TABS 4 | // 5 | // Tab set 6 | { 7 | "class": "tabset_control", 8 | "content_margin": [0,0,0,1], 9 | "layer0.tint": [28,33,38], 10 | "layer0.opacity": 1, 11 | "tab_overlap": -1, 12 | "tab_width": 180, 13 | "tab_min_width": 40, 14 | "tab_height": 40, 15 | "mouse_wheel_switch": false 16 | }, 17 | { 18 | "class": "tabset_control", 19 | "settings": ["mouse_wheel_switches_tabs"], 20 | "mouse_wheel_switch": true 21 | }, 22 | // Tab element 23 | { 24 | "class": "tab_control", 25 | "max_margin_trim": 0, 26 | "hit_test_level": 0 27 | }, 28 | // Tab close state 29 | { 30 | "class": "tab_control", 31 | "settings": ["show_tab_close_buttons"], 32 | "content_margin": [10,0,8,0], 33 | "layer0.tint": [38,45,54], 34 | "layer0.opacity": 1 35 | }, 36 | // Tab close state (!show_tab_close_buttons) 37 | { 38 | "class": "tab_control", 39 | "settings": ["!show_tab_close_buttons"], 40 | "content_margin": [10,0,8,0], 41 | "layer0.tint": [38,45,54], 42 | "layer0.opacity": 1 43 | }, 44 | // Tab hover state 45 | { 46 | "class": "tab_control", 47 | "attributes": ["hover"] 48 | }, 49 | // Tab active state 50 | { 51 | "class": "tab_control", 52 | "attributes": ["selected"], 53 | "layer0.tint": [49,57,69] 54 | }, 55 | // Tab active state (!show_tab_close_buttons) 56 | { 57 | "class": "tab_control", 58 | "settings": ["!show_tab_close_buttons"], 59 | "attributes": ["selected"], 60 | "layer0.tint": [49,57,69] 61 | }, 62 | // Tab dirty state (!show_tab_close_buttons) 63 | { 64 | "class": "tab_control", 65 | "settings": ["!show_tab_close_buttons"], 66 | "attributes": ["dirty"], 67 | "content_margin": [12,3,7,3] 68 | }, 69 | // 70 | // TAB BUTTONS 71 | // 72 | // Tab close button 73 | { 74 | "class": "tab_close_button", 75 | "layer0.texture": "Theme - Spacefunk/Spacefunk/close.png", 76 | "layer0.opacity": 0, 77 | "layer0.tint": [79,91,102] 78 | }, 79 | { 80 | "class": "tab_close_button", 81 | "settings": ["show_tab_close_buttons"], 82 | "content_margin": [8,8] 83 | }, 84 | { 85 | "class": "tab_close_button", 86 | "parents": [{"class": "tab_control","attributes": ["hover"]}], 87 | "layer0.opacity": 1, 88 | "layer0.tint": [224,97,94] 89 | }, 90 | { 91 | "class": "tab_close_button", 92 | "parents": [{"class": "tab_control","attributes": ["selected"]}], 93 | "layer0.opacity": 1 94 | }, 95 | // Tab dirty button 96 | { 97 | "class": "tab_close_button", 98 | "parents": [{"class": "tab_control","attributes": ["dirty"]}], 99 | "layer0.texture": "Theme - Spacefunk/Spacefunk/circle.png", 100 | "layer0.tint": [84,179,232], 101 | "layer0.opacity": 1 102 | }, 103 | { 104 | "class": "tab_close_button", 105 | "settings": ["!show_tab_close_buttons"], 106 | "parents": [{"class": "tab_control","attributes": ["dirty"]}], 107 | "content_margin": [8,8], 108 | "layer0.opacity": 1 109 | }, 110 | { 111 | "class": "tab_close_button", 112 | "parents": [{"class": "tab_control","attributes": ["dirty","hover"]}], 113 | "layer0.texture": "Theme - Spacefunk/Spacefunk/close.png", 114 | "layer0.tint": [224,97,94], 115 | "layer0.opacity": 1 116 | }, 117 | { 118 | "class": "tab_close_button", 119 | "parents": [{"class": "tab_control","attributes": ["dirty","selected"]}] 120 | }, 121 | // Tab highlight button 122 | { 123 | "class": "tab_close_button", 124 | "settings": ["highlight_modified_tabs"], 125 | "parents": [{"class": "tab_control","attributes": ["dirty"]}] 126 | }, 127 | { 128 | "class": "tab_close_button", 129 | "settings": ["highlight_modified_tabs"], 130 | "parents": [{"class": "tab_control","attributes": ["dirty","selected"]}] 131 | }, 132 | // Tab close button hover 133 | { 134 | "class": "tab_close_button", 135 | "settings": ["show_tab_close_buttons"], 136 | "attributes": ["hover"] 137 | }, 138 | // Tab close button pressed 139 | { 140 | "class": "tab_close_button", 141 | "settings": ["show_tab_close_buttons"], 142 | "attributes": ["pressed"], 143 | "layer0.opacity": 0.8 144 | }, 145 | // 146 | // TAB LABELS 147 | // 148 | { 149 | "class": "tab_label", 150 | "fade": true, 151 | "fg": [101,115,127], 152 | "shadow_offset": 0, 153 | "font.size": 11.5 154 | }, 155 | { 156 | "class": "tab_label", 157 | "parents": [{"class": "tab_control","attributes": ["hover"]}], 158 | "fg": [192,197,206], 159 | "shadow_offset": 0 160 | }, 161 | { 162 | "class": "tab_label", 163 | "parents": [{"class": "tab_control","attributes": ["selected"]}], 164 | "fg": [223,225,232], 165 | "shadow_color": [35,35,35], 166 | "shadow_offset": 1 167 | }, 168 | // 169 | // FOLD BUTTONS 170 | // 171 | { 172 | "class": "fold_button_control", 173 | "layer0.texture": "Theme - Spacefunk/Spacefunk/folder-closed.png", 174 | "layer0.opacity": 0.1, 175 | "layer0.inner_margin": 0, 176 | "content_margin": [8,8] 177 | }, 178 | { 179 | "class": "fold_button_control", 180 | "attributes": ["hover"], 181 | "layer0.opacity": 0.3 182 | }, 183 | { 184 | "class": "fold_button_control", 185 | "attributes": ["expanded"], 186 | "layer0.texture": "Theme - Spacefunk/Spacefunk/folder-open.png" 187 | }, 188 | { 189 | "class": "fold_button_control", 190 | "attributes": ["expanded","hover"] 191 | }, 192 | // 193 | // STANDARD SCROLLBARS 194 | // 195 | // Standard vertical scroll bar 196 | { 197 | "class": "scroll_bar_control", 198 | "layer0.tint": [21,25,30], 199 | "layer0.opacity": 1, 200 | "blur": true 201 | }, 202 | // Standard horizontal scroll bar 203 | { 204 | "class": "scroll_bar_control", 205 | "attributes": ["horizontal"], 206 | "layer0.tint": [28,33,38], 207 | "layer0.inner_margin": [0,5], 208 | "blur": true 209 | }, 210 | // Standard scroll bar corner 211 | { 212 | "class": "scroll_corner_control", 213 | "layer0.tint": [28,33,38], 214 | "layer0.inner_margin": [5], 215 | "layer0.opacity": 1 216 | }, 217 | // Standard vertical scroll puck 218 | { 219 | "class": "puck_control", 220 | "layer0.tint": [52,61,70], 221 | "layer0.opacity": 1, 222 | "layer0.inner_margin": 0, 223 | "content_margin": 5, 224 | "blur": false 225 | }, 226 | // Standard horizontal scroll puck 227 | { 228 | "class": "puck_control", 229 | "attributes": ["horizontal"], 230 | "layer0.tint": [52,61,70], 231 | "layer0.inner_margin": 0, 232 | "content_margin": 5, 233 | "blur": false 234 | }, 235 | // 236 | // OVERLAY SCROLLBARS 237 | // 238 | // Overlay toggle scroll bar 239 | { 240 | "class": "scroll_area_control", 241 | "settings": ["overlay_scroll_bars"], 242 | "overlay": true 243 | }, 244 | { 245 | "class": "scroll_area_control", 246 | "settings": ["!overlay_scroll_bars"], 247 | "overlay": false 248 | }, 249 | // Overlay vertical scroll bar 250 | { 251 | "class": "scroll_bar_control", 252 | "settings": ["overlay_scroll_bars"], 253 | "layer0.tint": [52,61,70], 254 | "layer0.inner_margin": [0,10], 255 | "blur": false 256 | }, 257 | // Overlay horizontal scroll bar 258 | { 259 | "class": "scroll_bar_control", 260 | "settings": ["overlay_scroll_bars"], 261 | "attributes": ["horizontal"], 262 | "layer0.tint": [52,61,70], 263 | "layer0.inner_margin": [5,0], 264 | "blur": true 265 | }, 266 | // Overlay vertical puck 267 | { 268 | "class": "puck_control", 269 | "settings": ["overlay_scroll_bars"], 270 | "layer0.inner_margin": [0,5], 271 | "content_margin": [2,32], 272 | "blur": true 273 | }, 274 | // Overlay horizontal puck 275 | { 276 | "class": "puck_control", 277 | "settings": ["overlay_scroll_bars"], 278 | "attributes": ["horizontal"], 279 | "layer0.tint": [49,57,69], 280 | "layer0.inner_margin": [5,0], 281 | "content_margin": [16,2], 282 | "blur": true 283 | }, 284 | // Overlay light puck (for dark content) 285 | { 286 | "class": "puck_control", 287 | "settings": ["overlay_scroll_bars"], 288 | "attributes": ["dark"], 289 | "layer0.tint": [28,33,38] 290 | 291 | }, 292 | // Overlay light horizontal puck (for dark content) 293 | { 294 | "class": "puck_control", 295 | "settings": ["overlay_scroll_bars"], 296 | "attributes": ["horizontal","dark"], 297 | "layer0.tint": [28,33,38] 298 | }, 299 | // 300 | // EMPTY WINDOW BACKGROUND 301 | // 302 | { 303 | "class": "sheet_container_control", 304 | "layer0.tint": [33,38,46], 305 | "layer0.opacity": 1 306 | }, 307 | // 308 | // GRID LAYOUT 309 | // 310 | { 311 | "class": "grid_layout_control", 312 | "border_size": 0, 313 | "border_color": [40,40,40] 314 | }, 315 | // 316 | // MINI MAP 317 | // 318 | { 319 | "class": "minimap_control", 320 | "viewport_color": [255,255,255,10] 321 | }, 322 | // 323 | // LABELS 324 | // 325 | // General labels 326 | { 327 | "class": "label_control", 328 | "color": [79,91,102] 329 | }, 330 | // Text field labels 331 | { 332 | "class": "label_control", 333 | "parents": [{"class": "panel_control"}], 334 | "shadow_offset": 0 335 | }, 336 | // Button labels 337 | { 338 | "class": "label_control", 339 | "parents": [{"class": "button_control"}], 340 | "shadow_offset": 0, 341 | "font.size": 12.5 342 | }, 343 | { 344 | "class": "label_control", 345 | "parents": [{"class": "button_control", "attributes": ["hover"]}], 346 | "color": [223,225,232] 347 | }, 348 | // 349 | // TOOLTIP 350 | // 351 | // Tooltip container 352 | { 353 | "class": "tool_tip_control", 354 | "layer0.tint": [79,91,103], 355 | "layer0.inner_margin": [1,1], 356 | "layer0.opacity": 1, 357 | "content_margin": 6 358 | }, 359 | // Tooltip content 360 | { 361 | "class": "tool_tip_label_control", 362 | "color": [239,241,245] 363 | }, 364 | // 365 | // STATUS BAR 366 | // 367 | // Status bar container 368 | { 369 | "class": "status_bar", 370 | "content_margin": 4, 371 | "layer0.tint": [27,31,35], 372 | "layer0.opacity": 1 373 | }, 374 | // Status bar button 375 | { 376 | "class": "status_button", 377 | "min_size": [100, 0] 378 | }, 379 | // Status bar label 380 | { 381 | "class": "label_control", 382 | "parents": [{"class": "status_bar"}], 383 | "color": [79,91,102] 384 | }, 385 | // 386 | // SIDEBAR 387 | // 388 | // Sidebar container 389 | { 390 | "class": "sidebar_container", 391 | "content_margin": [5,5,1,5], 392 | "layer0.tint": [21,25,30], 393 | "layer0.opacity": 1 394 | }, 395 | { 396 | "class": "sidebar_container", 397 | "settings": ["spacefunk_sidebar_light"], 398 | "layer0.tint": [222,222,222] 399 | }, 400 | // Sidebar scrollbar 401 | { 402 | "class": "scroll_bar_control", 403 | "parents": [{"class": "sidebar_container"}], 404 | "settings": ["spacefunk_sidebar_light"], 405 | "layer0.tint": [222,222,222], 406 | "layer0.opacity": 1, 407 | "blur": true 408 | }, 409 | // Sidebar scrollbar vertical puck 410 | { 411 | "class": "puck_control", 412 | "parents": [{"class": "sidebar_container"}], 413 | "settings": ["spacefunk_sidebar_light"], 414 | "layer0.tint": [181,182,182], 415 | "layer0.opacity": 1, 416 | "layer0.inner_margin": 0, 417 | "content_margin": 5, 418 | "blur": false 419 | }, 420 | // Sidebar scrollbar corner 421 | { 422 | "class": "scroll_corner_control", 423 | "parents": [{"class": "sidebar_container"}], 424 | "settings": ["spacefunk_sidebar_light"], 425 | "layer0.tint": [222,222,222] 426 | }, 427 | // Sidebar tree 428 | { 429 | "class": "sidebar_tree", 430 | "row_padding": [8,4], 431 | "indent": 12, 432 | "indent_offset": 14, 433 | "indent_top_level": false, 434 | "dark_content": true 435 | }, 436 | // Sidebar rows 437 | { 438 | "class": "tree_row", 439 | "layer0.opacity": 0 440 | }, 441 | // Sidebar row selected 442 | { 443 | "class": "tree_row", 444 | "attributes": ["selected"], 445 | "layer0.tint": [33,38,46], 446 | "layer0.opacity": 1 447 | }, 448 | { 449 | "class": "tree_row", 450 | "settings": ["spacefunk_sidebar_light"], 451 | "attributes": ["selected"], 452 | "layer0.tint": [206,207,207] 453 | }, 454 | // Sidebar heading 455 | { 456 | "class": "sidebar_heading", 457 | "color": [79,91,102], 458 | "shadow_color": [0,0,0], 459 | "shadow_offset": [0,1], 460 | "font.bold": true, 461 | "font.size": 13 462 | }, 463 | { 464 | "class": "sidebar_heading", 465 | "settings": ["spacefunk_sidebar_light"], 466 | "color": [84,84,84], 467 | "shadow_color": [235,235,235] 468 | }, 469 | // Sidebar heading selected 470 | { 471 | "class": "sidebar_heading", 472 | "parents": [{"class": "tree_row","attributes": ["selected"]}], 473 | "shadow_offset": 0 474 | }, 475 | // Sidebar entry 476 | { 477 | "class": "sidebar_label", 478 | "color": [101,115,127], 479 | "shadow_offset": 0, 480 | "font.size": 12.5 481 | }, 482 | { 483 | "class": "sidebar_label", 484 | "settings": ["spacefunk_sidebar_light"], 485 | "color": [89,89,89] 486 | }, 487 | { 488 | "class": "sidebar_label", 489 | "parents": [{"class": "tree_row","attributes": ["hover"]}], 490 | "color": [202,204,207], 491 | "shadow_offset": 0 492 | }, 493 | { 494 | "class": "sidebar_label", 495 | "parents": [{"class": "tree_row","attributes": ["hover"]}], 496 | "settings": ["spacefunk_sidebar_light"], 497 | "color": [38,38,38] 498 | }, 499 | // Sidebar folder entry 500 | { 501 | "class": "sidebar_label", 502 | "parents": [{"class": "tree_row","attributes": ["expandable"]}], 503 | "color": [101,115,127], 504 | "shadow_color": [0,0,0], 505 | "shadow_offset": [0,1] 506 | }, 507 | { 508 | "class": "sidebar_label", 509 | "parents": [{"class": "tree_row","attributes": ["expandable"]}], 510 | "settings": ["spacefunk_sidebar_light"], 511 | "color": [84,84,84], 512 | "shadow_color": [235,235,235] 513 | }, 514 | { 515 | "class": "sidebar_label", 516 | "parents": [{"class": "tree_row","attributes": ["expandable","hover"]}], 517 | "color": [192,197,206], 518 | "shadow_color": [0,0,0], 519 | "shadow_offset": [0,1] 520 | }, 521 | { 522 | "class": "sidebar_label", 523 | "parents": [{"class": "tree_row","attributes": ["expandable","hover"]}], 524 | "settings": ["spacefunk_sidebar_light"], 525 | "color": [38,38,38], 526 | "shadow_color": [235,235,235] 527 | }, 528 | { 529 | "class": "sidebar_label", 530 | "parents": [{"class": "tree_row","attributes": ["expandable"]}], 531 | "settings": ["bold_folder_labels"], 532 | "font.bold": true 533 | }, 534 | // Sidebar entry selected 535 | { 536 | "class": "sidebar_label", 537 | "parents": [{"class": "tree_row","attributes": ["selected"]}], 538 | "color": [223,225,232], 539 | "shadow_color": [0,0,0], 540 | "shadow_offset": [0,1], 541 | "font.size": 12.5 542 | }, 543 | { 544 | "class": "sidebar_label", 545 | "parents": [{"class": "tree_row","attributes": ["selected"]}], 546 | "settings": ["spacefunk_sidebar_light"], 547 | "color": [38,38,38], 548 | "shadow_color": [235,235,235] 549 | }, 550 | // 551 | // SIDEBAR - OPEN FILE ICONS 552 | // 553 | // Sidebar file close 554 | { 555 | "class": "close_button", 556 | "layer0.opacity": 0, 557 | "content_margin": [8,8] 558 | }, 559 | { 560 | "class": "close_button", 561 | "parents": [{"class": "tree_row","attributes": ["hover"]}], 562 | "layer0.opacity": 1, 563 | "layer0.texture": "Theme - Spacefunk/Spacefunk/close.png", 564 | "layer0.tint": [224,97,94] 565 | }, 566 | // Sidebar file dirty 567 | { 568 | "class": "close_button", 569 | "attributes": ["dirty"], 570 | "layer0.texture": "Theme - Spacefunk/Spacefunk/circle.png", 571 | "layer0.opacity": 1, 572 | "layer0.tint": [84,179,232] 573 | }, 574 | { 575 | "class": "close_button", 576 | "attributes": ["dirty"], 577 | "parents": [{"class": "tree_row","attributes": ["selected"]}], 578 | "layer0.texture": "Theme - Spacefunk/Spacefunk/close.png" 579 | }, 580 | { 581 | "class": "close_button", 582 | "attributes": ["dirty"], 583 | "parents": [{"class": "tree_row","attributes": ["hover"]}], 584 | "layer0.texture": "Theme - Spacefunk/Spacefunk/close.png", 585 | "layer0.opacity": 1, 586 | "layer0.tint": [224,97,94] 587 | }, 588 | // Sidebar file close hover 589 | { 590 | "class": "close_button", 591 | "attributes": ["hover"], 592 | "layer0.texture": "Theme - Spacefunk/Spacefunk/close.png" 593 | }, 594 | { 595 | "class": "close_button", 596 | "parents": [{"class": "tree_row","attributes": ["hover","selected"]}], 597 | "layer0.texture": "Theme - Spacefunk/Spacefunk/close.png", 598 | "layer0.opacity": 1, 599 | "layer0.tint": [224,97,94] 600 | }, 601 | // 602 | // SIDEBAR - GENERAL FILE ICONS 603 | // 604 | // Sidebar group closed 605 | { 606 | "class": "disclosure_button_control", 607 | "content_margin": [8,8], 608 | "layer0.texture": "Theme - Spacefunk/Spacefunk/folder-closed.png", 609 | "layer0.tint": [79,91,102], 610 | "layer0.opacity": 1 611 | }, 612 | { 613 | "class": "disclosure_button_control", 614 | "parents": [{"class": "tree_row","attributes": ["hover"]}], 615 | "layer0.tint": [167,173,186] 616 | }, 617 | { 618 | "class": "disclosure_button_control", 619 | "parents": [{"class": "tree_row","attributes": ["hover"]}], 620 | "settings": ["spacefunk_sidebar_light"], 621 | "layer0.tint": [38,38,38] 622 | }, 623 | { 624 | "class": "disclosure_button_control", 625 | "parents": [{"class": "tree_row","attributes": ["selected"]}] 626 | }, 627 | // Sidebar folder closed 628 | { 629 | "class": "disclosure_button_control", 630 | "layer0.texture": "Theme - Spacefunk/Spacefunk/folder-closed.png" 631 | }, 632 | { 633 | "class": "disclosure_button_control", 634 | "parents": [{"class": "tree_row","attributes": ["hover"]}] 635 | }, 636 | { 637 | "class": "disclosure_button_control", 638 | "parents": [{"class": "tree_row","attributes": ["selected"]}], 639 | "layer0.texture": "Theme - Spacefunk/Spacefunk/folder-closed.png" 640 | }, 641 | // Sidebar group open 642 | { 643 | "class": "disclosure_button_control", 644 | "attributes": ["expanded"], 645 | "layer0.texture": "Theme - Spacefunk/Spacefunk/folder-open.png" 646 | }, 647 | { 648 | "class": "disclosure_button_control", 649 | "attributes": ["expanded"], 650 | "parents": [{"class": "tree_row","attributes": ["hover"]}] 651 | }, 652 | { 653 | "class": "disclosure_button_control", 654 | "attributes": ["expanded"], 655 | "parents": [{"class": "tree_row","attributes": ["selected"]}], 656 | "layer0.texture": "Theme - Spacefunk/Spacefunk/folder-open.png" 657 | }, 658 | // Sidebar folder open 659 | { 660 | "class": "disclosure_button_control", 661 | "attributes": ["expanded"], 662 | "layer0.texture": "Theme - Spacefunk/Spacefunk/folder-open.png" 663 | }, 664 | { 665 | "class": "disclosure_button_control", 666 | "attributes": ["expanded"], 667 | "parents": [{"class": "tree_row","attributes": ["hover"]}], 668 | "layer0.texture": "Theme - Spacefunk/Spacefunk/folder-open.png" 669 | }, 670 | { 671 | "class": "disclosure_button_control", 672 | "attributes": ["expanded"], 673 | "parents": [{"class": "tree_row","attributes": ["selected"]}], 674 | "layer0.texture": "Theme - Spacefunk/Spacefunk/folder-open.png" 675 | }, 676 | // 677 | // STANDARD TEXT BUTTONS 678 | // 679 | // Default button state 680 | { 681 | "class": "button_control", 682 | "content_margin": [4,8,4,8], 683 | "min_size": [64,0], 684 | "layer0.opacity": 1, 685 | "layer0.tint": [35,40,48], 686 | "layer0.inner_margin": [8,8] 687 | }, 688 | // Hover button state 689 | { 690 | "class": "button_control", 691 | "attributes": ["hover"], 692 | "layer0.tint": [42,47,56] 693 | }, 694 | // Pressed button state 695 | { 696 | "class": "button_control", 697 | "attributes": ["pressed"], 698 | "layer0.tint": [46,51,59] 699 | }, 700 | // 701 | // TEXT INPUT FIELD 702 | // 703 | // Text input field item 704 | { 705 | "class": "text_line_control", 706 | "layer0.tint": [51,61,70], 707 | "layer0.opacity": 1, 708 | "content_margin": 3 709 | }, 710 | // 711 | // PANEL BACKGROUNDS 712 | // 713 | // Bottom panel background 714 | { 715 | "class": "panel_control", 716 | "layer0.inner_margin": [0,10], 717 | "layer0.opacity": 1, 718 | "layer0.tint": [28,33,38], 719 | "content_margin": 0 720 | }, 721 | // Quick panel background 722 | { 723 | "class": "overlay_control", 724 | "layer0.opacity": 1, 725 | "layer1.tint": [28,33,38], 726 | "layer1.inner_margin": [0,0,10,0], 727 | "layer1.opacity": 1, 728 | "content_margin": 0 729 | }, 730 | // 731 | // QUICK PANEL 732 | // 733 | { 734 | "class": "quick_panel", 735 | "row_padding": 6, 736 | "layer0.tint": [223,225,232], 737 | "layer0.opacity": 1, 738 | "dark_content": true 739 | }, 740 | { 741 | "class": "quick_panel_row", 742 | "layer0.tint": [51,61,70], 743 | "layer0.opacity": 1 744 | }, 745 | { 746 | "class": "quick_panel_row", 747 | "attributes": ["hover"], 748 | "layer0.tint": [60,71,81] 749 | }, 750 | { 751 | "class": "quick_panel_row", 752 | "attributes": ["selected"], 753 | "layer0.tint": [67,75,82] 754 | }, 755 | { 756 | "class": "quick_panel_label", 757 | "fg": [167,173,186,255], 758 | "match_fg": [255,255,255], 759 | "selected_fg": [255,255,255], 760 | "selected_match_fg": [255,255,255] 761 | }, 762 | { 763 | "class": "quick_panel_path_label", 764 | "fg": [101,115,126,255], 765 | "match_fg": [137,145,155,255], 766 | "selected_fg": [255,255,255], 767 | "selected_match_fg": [255,255,255] 768 | }, 769 | { 770 | "class": "quick_panel_score_label", 771 | "fg": [101,115,126,255], 772 | "selected_fg": [255,255,255] 773 | }, 774 | // 775 | // MINI QUICK PANEL 776 | // 777 | { 778 | "class": "mini_quick_panel_row", 779 | "layer0.tint": [51,61,70], 780 | "layer0.opacity": 1 781 | }, 782 | { 783 | "class": "mini_quick_panel_row", 784 | "attributes": ["hover"], 785 | "layer0.tint": [60,71,81] 786 | }, 787 | { 788 | "class": "mini_quick_panel_row", 789 | "attributes": ["selected"], 790 | "layer0.tint": [67,75,82] 791 | }, 792 | // 793 | // CODE COMPLETION DROPDOWN 794 | // 795 | { 796 | "class": "popup_control", 797 | "content_margin": 1, 798 | "layer0.tint": [52,61,70], 799 | "layer0.opacity": 1 800 | }, 801 | { 802 | "class": "auto_complete", 803 | "row_padding": [2,2] 804 | }, 805 | { 806 | "class": "auto_complete_label", 807 | "fg": [167,173,186,255], 808 | "match_fg": [255,255,255], 809 | "selected_fg": [167,173,186,255], 810 | "selected_match_fg": [255,255,255] 811 | }, 812 | { 813 | "class": "table_row", 814 | "layer0.tint": [79,91,103], 815 | "layer0.opacity": 0, 816 | "layer0.inner_margin": 0 817 | }, 818 | { 819 | "class": "table_row", 820 | "attributes": ["selected"], 821 | "layer0.opacity": 1 822 | }, 823 | // 824 | // BOTTOM PANEL BUTTONS 825 | // 826 | // Button group middle 827 | { 828 | "class": "icon_button_control", 829 | "layer1.opacity": 0, 830 | "layer1.tint":[35,40,48], 831 | "content_margin": 7 832 | }, 833 | { 834 | "class": "icon_button_control", 835 | "attributes": ["selected"], 836 | "layer0.opacity": 0 837 | }, 838 | // Button group left 839 | { 840 | "class": "icon_button_control", 841 | "attributes": ["left"] 842 | }, 843 | // Button group left 844 | { 845 | "class": "icon_button_control", 846 | "attributes": ["left"] 847 | }, 848 | { 849 | "class": "icon_button_control", 850 | "attributes": ["left","selected"] 851 | }, 852 | // Button group right 853 | { 854 | "class": "icon_button_control", 855 | "attributes": ["right"] 856 | }, 857 | { 858 | "class": "icon_button_control", 859 | "attributes": ["right","selected"] 860 | }, 861 | // Button single 862 | { 863 | "class": "icon_button_control", 864 | "attributes": ["left","right"] 865 | }, 866 | { 867 | "class": "icon_button_control", 868 | "attributes": ["left","right","selected"] 869 | }, 870 | // 871 | // BOTTOM PANEL ICONS - GROUP 1 872 | // 873 | // Regex search button 874 | { 875 | "class": "icon_regex", 876 | "layer0.texture": "Theme - Spacefunk/Spacefunk/regex.png", 877 | "layer0.tint": [79,91,102], 878 | "layer0.opacity": 1, 879 | "content_margin": 8 880 | }, 881 | { 882 | "class": "icon_regex", 883 | "parents": [{"class": "icon_button_control","attributes": ["selected"]}], 884 | "layer0.tint": [255,255,255] 885 | }, 886 | // Case sensitive search button 887 | { 888 | "class": "icon_case", 889 | "layer0.texture": "Theme - Spacefunk/Spacefunk/casesens.png", 890 | "layer0.tint": [79,91,102], 891 | "layer0.opacity": 1, 892 | "content_margin": 8 893 | }, 894 | { 895 | "class": "icon_case", 896 | "parents": [{"class": "icon_button_control","attributes": ["selected"]}], 897 | "layer0.tint": [255,255,255] 898 | }, 899 | // Match whole word search button 900 | { 901 | "class": "icon_whole_word", 902 | "layer0.texture": "Theme - Spacefunk/Spacefunk/wholeword.png", 903 | "layer0.tint": [79,91,102], 904 | "layer0.opacity": 1, 905 | "content_margin": 8 906 | }, 907 | { 908 | "class": "icon_whole_word", 909 | "parents": [{"class": "icon_button_control","attributes": ["selected"]}], 910 | "layer0.tint": [255,255,255] 911 | }, 912 | // 913 | // BOTTOM PANEL ICONS - GROUP 1 (EXTENDED: FIND IN FILES) 914 | // 915 | // Show search context button 916 | { 917 | "class": "icon_context", 918 | "layer0.texture": "Theme - Spacefunk/Spacefunk/context.png", 919 | "layer0.tint": [79,91,102], 920 | "layer0.opacity": 1, 921 | "content_margin": 8 922 | }, 923 | { 924 | "class": "icon_context", 925 | "parents": [{"class": "icon_button_control","attributes": ["selected"]}], 926 | "layer0.tint": [255,255,255] 927 | }, 928 | // Use search buffer 929 | { 930 | "class": "icon_use_buffer", 931 | "layer0.texture": "Theme - Spacefunk/Spacefunk/buffer.png", 932 | "layer0.tint": [79,91,102], 933 | "layer0.opacity": 1, 934 | "content_margin": 8 935 | }, 936 | { 937 | "class": "icon_use_buffer", 938 | "parents": [{"class": "icon_button_control","attributes": ["selected"]}], 939 | "layer0.tint": [255,255,255] 940 | }, 941 | // 942 | // BOTTOM PANEL ICONS - GROUP 2 943 | // 944 | // Reverse search direction button (ST2 only) 945 | { 946 | "class": "icon_reverse", 947 | "layer0.texture": "Theme - Spacefunk/Spacefunk/reverse.png", 948 | "layer0.tint": [79,91,102], 949 | "layer0.opacity": 1, 950 | "content_margin": 8 951 | }, 952 | { 953 | "class": "icon_reverse", 954 | "parents": [{"class": "icon_button_control","attributes": ["selected"]}], 955 | "layer0.tint": [255,255,255] 956 | }, 957 | // Search wrap button 958 | { 959 | "class": "icon_wrap", 960 | "layer0.texture": "Theme - Spacefunk/Spacefunk/wrap.png", 961 | "layer0.tint": [79,91,102], 962 | "layer0.opacity": 1, 963 | "content_margin": 8 964 | }, 965 | { 966 | "class": "icon_wrap", 967 | "parents": [{"class": "icon_button_control","attributes": ["selected"]}], 968 | "layer0.tint": [255,255,255] 969 | }, 970 | // Search in selection button 971 | { 972 | "class": "icon_in_selection", 973 | "layer0.texture": "Theme - Spacefunk/Spacefunk/selection.png", 974 | "layer0.tint": [79,91,102], 975 | "layer0.opacity": 1, 976 | "content_margin": 8 977 | }, 978 | { 979 | "class": "icon_in_selection", 980 | "parents": [{"class": "icon_button_control","attributes": ["selected"]}], 981 | "layer0.tint": [255,255,255] 982 | }, 983 | // 984 | // BOTTOM PANEL ICONS - GROUP 3 985 | // 986 | // Preserve case button 987 | { 988 | "class": "icon_preserve_case", 989 | "layer0.texture": "Theme - Spacefunk/Spacefunk/casesens.png", 990 | "layer0.tint": [79,91,102], 991 | "layer0.opacity": 1, 992 | "content_margin": 8 993 | }, 994 | { 995 | "class": "icon_preserve_case", 996 | "parents": [{"class": "icon_button_control","attributes": ["selected"]}], 997 | "layer0.tint": [255,255,255] 998 | }, 999 | // 1000 | // BOTTOM PANEL ICONS - GROUP 4 1001 | // 1002 | // Highlight results button 1003 | { 1004 | "class": "icon_highlight", 1005 | "layer0.texture": "Theme - Spacefunk/Spacefunk/highlight.png", 1006 | "layer0.tint": [79,91,102], 1007 | "layer0.opacity": 1, 1008 | "content_margin": 8 1009 | }, 1010 | { 1011 | "class": "icon_highlight", 1012 | "parents": [{"class": "icon_button_control","attributes": ["selected"]}], 1013 | "layer0.tint": [255,255,255] 1014 | }, 1015 | // 1016 | // FIX ICON BUG BY REMOVING THEM 1017 | // 1018 | { 1019 | "class": "icon_file_type", 1020 | "content_margin": 0, 1021 | "layer0.opacity": 0 1022 | }, 1023 | { 1024 | "class": "icon_folder", 1025 | "layer0.texture": "", 1026 | "layer0.opacity": 0, 1027 | "content_margin": 0 1028 | }, 1029 | { 1030 | "class": "icon_folder_loading", 1031 | "content_margin": 0, 1032 | "layer0.opacity": 0 1033 | } 1034 | ] 1035 | -------------------------------------------------------------------------------- /Spacefunk (Grey Tuesday).sublime-theme: -------------------------------------------------------------------------------- 1 | [ 2 | // 3 | // TABS 4 | // 5 | // Tab set 6 | { 7 | "class": "tabset_control", 8 | "content_margin": [0,0,0,1], 9 | "layer0.tint": [29,30,31], 10 | "layer0.opacity": 1, 11 | "tab_overlap": -1, 12 | "tab_width": 180, 13 | "tab_min_width": 40, 14 | "tab_height": 40, 15 | "mouse_wheel_switch": false 16 | }, 17 | { 18 | "class": "tabset_control", 19 | "settings": ["mouse_wheel_switches_tabs"], 20 | "mouse_wheel_switch": true 21 | }, 22 | // Tab element 23 | { 24 | "class": "tab_control", 25 | "max_margin_trim": 0, 26 | "hit_test_level": 0 27 | }, 28 | // Tab close state 29 | { 30 | "class": "tab_control", 31 | "settings": ["show_tab_close_buttons"], 32 | "content_margin": [10,0,8,0], 33 | "layer0.tint": [41,42,43], 34 | "layer0.opacity": 1 35 | }, 36 | // Tab close state (!show_tab_close_buttons) 37 | { 38 | "class": "tab_control", 39 | "settings": ["!show_tab_close_buttons"], 40 | "content_margin": [10,0,8,0], 41 | "layer0.tint": [41,42,43], 42 | "layer0.opacity": 1 43 | }, 44 | // Tab hover state 45 | { 46 | "class": "tab_control", 47 | "attributes": ["hover"] 48 | }, 49 | // Tab active state 50 | { 51 | "class": "tab_control", 52 | "attributes": ["selected"], 53 | "layer0.tint": [56,57,59] 54 | }, 55 | // Tab active state (!show_tab_close_buttons) 56 | { 57 | "class": "tab_control", 58 | "settings": ["!show_tab_close_buttons"], 59 | "attributes": ["selected"], 60 | "layer0.tint": [56,57,59] 61 | }, 62 | // Tab dirty state (!show_tab_close_buttons) 63 | { 64 | "class": "tab_control", 65 | "settings": ["!show_tab_close_buttons"], 66 | "attributes": ["dirty"], 67 | "content_margin": [12,3,7,3] 68 | }, 69 | // 70 | // TAB BUTTONS 71 | // 72 | // Tab close button 73 | { 74 | "class": "tab_close_button", 75 | "layer0.texture": "Theme - Spacefunk/Spacefunk/close.png", 76 | "layer0.opacity": 0, 77 | "layer0.tint": [140,141,143] 78 | }, 79 | { 80 | "class": "tab_close_button", 81 | "settings": ["show_tab_close_buttons"], 82 | "content_margin": [8,8] 83 | }, 84 | { 85 | "class": "tab_close_button", 86 | "parents": [{"class": "tab_control","attributes": ["hover"]}], 87 | "layer0.opacity": 1, 88 | "layer0.tint": [224,97,94] 89 | }, 90 | { 91 | "class": "tab_close_button", 92 | "parents": [{"class": "tab_control","attributes": ["selected"]}], 93 | "layer0.opacity": 1 94 | }, 95 | // Tab dirty button 96 | { 97 | "class": "tab_close_button", 98 | "parents": [{"class": "tab_control","attributes": ["dirty"]}], 99 | "layer0.texture": "Theme - Spacefunk/Spacefunk/circle.png", 100 | "layer0.tint": [84,179,232], 101 | "layer0.opacity": 1 102 | }, 103 | { 104 | "class": "tab_close_button", 105 | "settings": ["!show_tab_close_buttons"], 106 | "parents": [{"class": "tab_control","attributes": ["dirty"]}], 107 | "content_margin": [8,8], 108 | "layer0.opacity": 1 109 | }, 110 | { 111 | "class": "tab_close_button", 112 | "parents": [{"class": "tab_control","attributes": ["dirty","hover"]}], 113 | "layer0.texture": "Theme - Spacefunk/Spacefunk/close.png", 114 | "layer0.tint": [224,97,94], 115 | "layer0.opacity": 1 116 | }, 117 | { 118 | "class": "tab_close_button", 119 | "parents": [{"class": "tab_control","attributes": ["dirty","selected"]}] 120 | }, 121 | // Tab highlight button 122 | { 123 | "class": "tab_close_button", 124 | "settings": ["highlight_modified_tabs"], 125 | "parents": [{"class": "tab_control","attributes": ["dirty"]}] 126 | }, 127 | { 128 | "class": "tab_close_button", 129 | "settings": ["highlight_modified_tabs"], 130 | "parents": [{"class": "tab_control","attributes": ["dirty","selected"]}] 131 | }, 132 | // Tab close button hover 133 | { 134 | "class": "tab_close_button", 135 | "settings": ["show_tab_close_buttons"], 136 | "attributes": ["hover"] 137 | }, 138 | // Tab close button pressed 139 | { 140 | "class": "tab_close_button", 141 | "settings": ["show_tab_close_buttons"], 142 | "attributes": ["pressed"], 143 | "layer0.opacity": 0.8 144 | }, 145 | // 146 | // TAB LABELS 147 | // 148 | { 149 | "class": "tab_label", 150 | "fade": true, 151 | "fg": [140,141,143], 152 | "shadow_offset": 0, 153 | "font.size": 11.5 154 | }, 155 | { 156 | "class": "tab_label", 157 | "parents": [{"class": "tab_control","attributes": ["hover"]}], 158 | "fg": [200,203,207], 159 | "shadow_offset": 0 160 | }, 161 | { 162 | "class": "tab_label", 163 | "parents": [{"class": "tab_control","attributes": ["selected"]}], 164 | "fg": [230,231,235], 165 | "shadow_color": [41,41,41], 166 | "shadow_offset": 1 167 | }, 168 | // 169 | // FOLD BUTTONS 170 | // 171 | { 172 | "class": "fold_button_control", 173 | "layer0.texture": "Theme - Spacefunk/Spacefunk/folder-closed.png", 174 | "layer0.opacity": 0.1, 175 | "layer0.inner_margin": 0, 176 | "content_margin": [8,8] 177 | }, 178 | { 179 | "class": "fold_button_control", 180 | "attributes": ["hover"], 181 | "layer0.opacity": 0.3 182 | }, 183 | { 184 | "class": "fold_button_control", 185 | "attributes": ["expanded"], 186 | "layer0.texture": "Theme - Spacefunk/Spacefunk/folder-open.png" 187 | }, 188 | { 189 | "class": "fold_button_control", 190 | "attributes": ["expanded","hover"] 191 | }, 192 | // 193 | // STANDARD SCROLLBARS 194 | // 195 | // Standard vertical scroll bar 196 | { 197 | "class": "scroll_bar_control", 198 | "layer0.tint": [27,28,28], 199 | "layer0.opacity": 1, 200 | "blur": true 201 | }, 202 | // Standard horizontal scroll bar 203 | { 204 | "class": "scroll_bar_control", 205 | "attributes": ["horizontal"], 206 | "layer0.tint": [27,28,28], 207 | "layer0.inner_margin": [0,5], 208 | "blur": true 209 | }, 210 | // Standard scroll bar corner 211 | { 212 | "class": "scroll_corner_control", 213 | "layer0.tint": [27,28,28], 214 | "layer0.inner_margin": 5, 215 | "layer0.opacity": 1 216 | }, 217 | // Standard vertical scroll puck 218 | { 219 | "class": "puck_control", 220 | "layer0.tint": [49,50,51], 221 | "layer0.opacity": 1, 222 | "layer0.inner_margin": 0, 223 | "content_margin": 5, 224 | "blur": false 225 | }, 226 | // Standard horizontal scroll puck 227 | { 228 | "class": "puck_control", 229 | "attributes": ["horizontal"], 230 | "layer0.tint": [49,50,51], 231 | "layer0.inner_margin": 0, 232 | "content_margin": 5, 233 | "blur": false 234 | }, 235 | // 236 | // OVERLAY SCROLLBARS 237 | // 238 | // Overlay toggle scroll bar 239 | { 240 | "class": "scroll_area_control", 241 | "settings": ["overlay_scroll_bars"], 242 | "overlay": true 243 | }, 244 | { 245 | "class": "scroll_area_control", 246 | "settings": ["!overlay_scroll_bars"], 247 | "overlay": false 248 | }, 249 | // Overlay vertical scroll bar 250 | { 251 | "class": "scroll_bar_control", 252 | "settings": ["overlay_scroll_bars"], 253 | "layer0.tint": [27,28,28], 254 | "layer0.inner_margin": [0,10], 255 | "blur": false 256 | }, 257 | // Overlay horizontal scroll bar 258 | { 259 | "class": "scroll_bar_control", 260 | "settings": ["overlay_scroll_bars"], 261 | "attributes": ["horizontal"], 262 | "layer0.tint": [27,28,28], 263 | "layer0.inner_margin": [5,0], 264 | "blur": true 265 | }, 266 | // Overlay vertical puck 267 | { 268 | "class": "puck_control", 269 | "settings": ["overlay_scroll_bars"], 270 | "layer0.tint": [49,50,51], 271 | "layer0.inner_margin": [0,5], 272 | "content_margin": [2,32], 273 | "blur": true 274 | }, 275 | // Overlay horizontal puck 276 | { 277 | "class": "puck_control", 278 | "settings": ["overlay_scroll_bars"], 279 | "attributes": ["horizontal"], 280 | "layer0.tint": [49,50,51], 281 | "layer0.inner_margin": [5,0], 282 | "content_margin": [16,2], 283 | "blur": true 284 | }, 285 | // Overlay light puck (for dark content) 286 | { 287 | "class": "puck_control", 288 | "settings": ["overlay_scroll_bars"], 289 | "attributes": ["dark"], 290 | "layer0.tint": [28,33,38] 291 | }, 292 | // Overlay light horizontal puck (for dark content) 293 | { 294 | "class": "puck_control", 295 | "settings": ["overlay_scroll_bars"], 296 | "attributes": ["horizontal","dark"], 297 | "layer0.tint": [28,33,38] 298 | }, 299 | // 300 | // EMPTY WINDOW BACKGROUND 301 | // 302 | { 303 | "class": "sheet_container_control", 304 | "layer0.tint": [33,33,33], 305 | "layer0.opacity": 1 306 | }, 307 | // 308 | // GRID LAYOUT 309 | // 310 | { 311 | "class": "grid_layout_control", 312 | "border_size": 1, 313 | "border_color": [40,40,40] 314 | }, 315 | // 316 | // MINI MAP 317 | // 318 | { 319 | "class": "minimap_control", 320 | "viewport_color": [255,255,255,10] 321 | }, 322 | // 323 | // LABELS 324 | // 325 | // General labels 326 | { 327 | "class": "label_control", 328 | "color": [115,118,120] 329 | }, 330 | // Text field labels 331 | { 332 | "class": "label_control", 333 | "parents": [{"class": "panel_control"}], 334 | "shadow_offset": 0 335 | }, 336 | // Button labels 337 | { 338 | "class": "label_control", 339 | "parents": [{"class": "button_control"}], 340 | "shadow_offset": 0, 341 | "font.size": 12.5 342 | }, 343 | { 344 | "class": "label_control", 345 | "parents": [{"class": "button_control", "attributes": ["hover"]}], 346 | "color": [223,225,232] 347 | }, 348 | // 349 | // TOOLTIP 350 | // 351 | // Tooltip container 352 | { 353 | "class": "tool_tip_control", 354 | "layer0.tint": [76,77,78], 355 | "layer0.inner_margin": [1,1], 356 | "layer0.opacity": 1, 357 | "content_margin": 6 358 | }, 359 | // Tooltip content 360 | { 361 | "class": "tool_tip_label_control", 362 | "color": [239,241,245] 363 | }, 364 | // 365 | // STATUS BAR 366 | // 367 | // Status bar container 368 | { 369 | "class": "status_bar", 370 | "content_margin": 4, 371 | "layer0.tint": [29,30,31], 372 | "layer0.opacity": 1 373 | }, 374 | // Status bar button 375 | { 376 | "class": "status_button", 377 | "min_size": [100,0] 378 | }, 379 | // Status bar label 380 | { 381 | "class": "label_control", 382 | "parents": [{"class": "status_bar"}], 383 | "color": [97,98,99] 384 | }, 385 | // 386 | // SIDEBAR 387 | // 388 | // Sidebar container 389 | { 390 | "class": "sidebar_container", 391 | "content_margin": [5,5,1,5], 392 | "layer0.tint": [27,28,28], 393 | "layer0.opacity": 1 394 | }, 395 | { 396 | "class": "sidebar_container", 397 | "settings": ["spacefunk_sidebar_light"], 398 | "layer0.tint": [222,222,222] 399 | }, 400 | // Sidebar scrollbar 401 | { 402 | "class": "scroll_bar_control", 403 | "parents": [{"class": "sidebar_container"}], 404 | "settings": ["spacefunk_sidebar_light"], 405 | "layer0.tint": [222,222,222], 406 | "layer0.opacity": 1, 407 | "blur": true 408 | }, 409 | // Sidebar scrollbar vertical puck 410 | { 411 | "class": "puck_control", 412 | "parents": [{"class": "sidebar_container"}], 413 | "settings": ["spacefunk_sidebar_light"], 414 | "layer0.tint": [181,182,182], 415 | "layer0.opacity": 1, 416 | "layer0.inner_margin": 0, 417 | "content_margin": 5, 418 | "blur": false 419 | }, 420 | // Sidebar scrollbar corner 421 | { 422 | "class": "scroll_corner_control", 423 | "parents": [{"class": "sidebar_container"}], 424 | "settings": ["spacefunk_sidebar_light"], 425 | "layer0.tint": [222,222,222] 426 | }, 427 | // Sidebar tree 428 | { 429 | "class": "sidebar_tree", 430 | "row_padding": [8,4], 431 | "indent": 12, 432 | "indent_offset": 14, 433 | "indent_top_level": false, 434 | "dark_content": true 435 | }, 436 | // Sidebar rows 437 | { 438 | "class": "tree_row", 439 | "layer0.opacity": 0 440 | }, 441 | // Sidebar row selected 442 | { 443 | "class": "tree_row", 444 | "attributes": ["selected"], 445 | "layer0.tint": [42,43,43], 446 | "layer0.opacity": 1 447 | }, 448 | { 449 | "class": "tree_row", 450 | "settings": ["spacefunk_sidebar_light"], 451 | "attributes": ["selected"], 452 | "layer0.tint": [206,207,207] 453 | }, 454 | // Sidebar heading 455 | { 456 | "class": "sidebar_heading", 457 | "color": [140,141,143], 458 | "shadow_color": [0,0,0], 459 | "shadow_offset": [0,1], 460 | "font.bold": true, 461 | "font.size": 13 462 | }, 463 | { 464 | "class": "sidebar_heading", 465 | "settings": ["spacefunk_sidebar_light"], 466 | "color": [84,84,84], 467 | "shadow_color": [235,235,235] 468 | }, 469 | // Sidebar heading selected 470 | { 471 | "class": "sidebar_heading", 472 | "parents": [{"class": "tree_row","attributes": ["selected"]}], 473 | "shadow_offset": 0 474 | }, 475 | // Sidebar entry 476 | { 477 | "class": "sidebar_label", 478 | "color": [125,126,128], 479 | "shadow_offset": 0, 480 | "font.size": 12.5 481 | }, 482 | { 483 | "class": "sidebar_label", 484 | "settings": ["spacefunk_sidebar_light"], 485 | "color": [89,89,89] 486 | }, 487 | { 488 | "class": "sidebar_label", 489 | "parents": [{"class": "tree_row","attributes": ["hover"]}], 490 | "color": [202,204,207], 491 | "shadow_offset": 0 492 | }, 493 | { 494 | "class": "sidebar_label", 495 | "parents": [{"class": "tree_row","attributes": ["hover"]}], 496 | "settings": ["spacefunk_sidebar_light"], 497 | "color": [38,38,38] 498 | }, 499 | // Sidebar folder entry 500 | { 501 | "class": "sidebar_label", 502 | "parents": [{"class": "tree_row","attributes": ["expandable"]}], 503 | "color": [140,141,143], 504 | "shadow_color": [0,0,0], 505 | "shadow_offset": [0,1] 506 | }, 507 | { 508 | "class": "sidebar_label", 509 | "parents": [{"class": "tree_row","attributes": ["expandable"]}], 510 | "settings": ["spacefunk_sidebar_light"], 511 | "color": [84,84,84], 512 | "shadow_color": [235,235,235] 513 | }, 514 | { 515 | "class": "sidebar_label", 516 | "parents": [{"class": "tree_row","attributes": ["expandable","hover"]}], 517 | "color": [202,204,207], 518 | "shadow_color": [0,0,0], 519 | "shadow_offset": [0,1] 520 | }, 521 | { 522 | "class": "sidebar_label", 523 | "parents": [{"class": "tree_row","attributes": ["expandable","hover"]}], 524 | "settings": ["spacefunk_sidebar_light"], 525 | "color": [38,38,38], 526 | "shadow_color": [235,235,235] 527 | }, 528 | { 529 | "class": "sidebar_label", 530 | "parents": [{"class": "tree_row","attributes": ["expandable"]}], 531 | "settings": ["bold_folder_labels"], 532 | "font.bold": true 533 | }, 534 | // Sidebar entry selected 535 | { 536 | "class": "sidebar_label", 537 | "parents": [{"class": "tree_row","attributes": ["selected"]}], 538 | "color": [223,225,232], 539 | "shadow_color": [0,0,0], 540 | "shadow_offset": [0,1], 541 | "font.size": 12.5 542 | }, 543 | { 544 | "class": "sidebar_label", 545 | "parents": [{"class": "tree_row","attributes": ["selected"]}], 546 | "settings": ["spacefunk_sidebar_light"], 547 | "color": [38,38,38], 548 | "shadow_color": [235,235,235] 549 | }, 550 | // 551 | // SIDEBAR - OPEN FILE ICONS 552 | // 553 | // Sidebar file close 554 | { 555 | "class": "close_button", 556 | "layer0.opacity": 0, 557 | "content_margin": [8,8] 558 | }, 559 | { 560 | "class": "close_button", 561 | "parents": [{"class": "tree_row","attributes": ["hover"]}], 562 | "layer0.opacity": 1, 563 | "layer0.texture": "Theme - Spacefunk/Spacefunk/close.png", 564 | "layer0.tint": [224,97,94] 565 | }, 566 | // Sidebar file dirty 567 | { 568 | "class": "close_button", 569 | "attributes": ["dirty"], 570 | "layer0.texture": "Theme - Spacefunk/Spacefunk/circle.png", 571 | "layer0.opacity": 1, 572 | "layer0.tint": [84,179,232] 573 | }, 574 | { 575 | "class": "close_button", 576 | "attributes": ["dirty"], 577 | "parents": [{"class": "tree_row","attributes": ["selected"]}], 578 | "layer0.texture": "Theme - Spacefunk/Spacefunk/close.png" 579 | }, 580 | { 581 | "class": "close_button", 582 | "attributes": ["dirty"], 583 | "parents": [{"class": "tree_row","attributes": ["hover"]}], 584 | "layer0.texture": "Theme - Spacefunk/Spacefunk/close.png", 585 | "layer0.opacity": 1, 586 | "layer0.tint": [224,97,94] 587 | }, 588 | // Sidebar file close hover 589 | { 590 | "class": "close_button", 591 | "attributes": ["hover"], 592 | "layer0.texture": "Theme - Spacefunk/Spacefunk/close.png" 593 | }, 594 | { 595 | "class": "close_button", 596 | "parents": [{"class": "tree_row","attributes": ["hover","selected"]}], 597 | "layer0.texture": "Theme - Spacefunk/Spacefunk/close.png", 598 | "layer0.opacity": 1, 599 | "layer0.tint": [224,97,94] 600 | }, 601 | // 602 | // SIDEBAR - GENERAL FILE ICONS 603 | // 604 | // Sidebar group closed 605 | { 606 | "class": "disclosure_button_control", 607 | "content_margin": [8,8], 608 | "layer0.texture": "Theme - Spacefunk/Spacefunk/folder-closed.png", 609 | "layer0.tint": [125,126,128], 610 | "layer0.opacity": 1 611 | }, 612 | { 613 | "class": "disclosure_button_control", 614 | "parents": [{"class": "tree_row","attributes": ["hover"]}], 615 | "layer0.tint": [202,204,207] 616 | }, 617 | { 618 | "class": "disclosure_button_control", 619 | "parents": [{"class": "tree_row","attributes": ["hover"]}], 620 | "settings": ["spacefunk_sidebar_light"], 621 | "layer0.tint": [38,38,38] 622 | }, 623 | { 624 | "class": "disclosure_button_control", 625 | "parents": [{"class": "tree_row","attributes": ["selected"]}] 626 | }, 627 | // Sidebar folder closed 628 | { 629 | "class": "disclosure_button_control", 630 | "layer0.texture": "Theme - Spacefunk/Spacefunk/folder-closed.png" 631 | }, 632 | { 633 | "class": "disclosure_button_control", 634 | "parents": [{"class": "tree_row","attributes": ["hover"]}] 635 | }, 636 | { 637 | "class": "disclosure_button_control", 638 | "parents": [{"class": "tree_row","attributes": ["selected"]}], 639 | "layer0.texture": "Theme - Spacefunk/Spacefunk/folder-closed.png" 640 | }, 641 | // Sidebar group open 642 | { 643 | "class": "disclosure_button_control", 644 | "attributes": ["expanded"], 645 | "layer0.texture": "Theme - Spacefunk/Spacefunk/folder-open.png" 646 | }, 647 | { 648 | "class": "disclosure_button_control", 649 | "attributes": ["expanded"], 650 | "parents": [{"class": "tree_row","attributes": ["hover"]}] 651 | }, 652 | { 653 | "class": "disclosure_button_control", 654 | "attributes": ["expanded"], 655 | "parents": [{"class": "tree_row","attributes": ["selected"]}], 656 | "layer0.texture": "Theme - Spacefunk/Spacefunk/folder-open.png" 657 | }, 658 | // Sidebar folder open 659 | { 660 | "class": "disclosure_button_control", 661 | "attributes": ["expanded"], 662 | "layer0.texture": "Theme - Spacefunk/Spacefunk/folder-open.png" 663 | }, 664 | { 665 | "class": "disclosure_button_control", 666 | "attributes": ["expanded"], 667 | "parents": [{"class": "tree_row","attributes": ["hover"]}], 668 | "layer0.texture": "Theme - Spacefunk/Spacefunk/folder-open.png" 669 | }, 670 | { 671 | "class": "disclosure_button_control", 672 | "attributes": ["expanded"], 673 | "parents": [{"class": "tree_row","attributes": ["selected"]}], 674 | "layer0.texture": "Theme - Spacefunk/Spacefunk/folder-open.png" 675 | }, 676 | // 677 | // STANDARD TEXT BUTTONS 678 | // 679 | // Default button state 680 | { 681 | "class": "button_control", 682 | "content_margin": [4,8,4,8], 683 | "min_size": [64,0], 684 | "layer0.opacity": 1, 685 | "layer0.tint": [40,40,41], 686 | "layer0.inner_margin": [8,8] 687 | }, 688 | // Hover button state 689 | { 690 | "class": "button_control", 691 | "attributes": ["hover"], 692 | "layer0.tint": [52,53,54] 693 | }, 694 | // Pressed button state 695 | { 696 | "class": "button_control", 697 | "attributes": ["pressed"], 698 | "layer0.tint": [59,59,59] 699 | }, 700 | // 701 | // TEXT INPUT FIELD 702 | // 703 | // Text input field item 704 | { 705 | "class": "text_line_control", 706 | "layer0.tint": [49,50,51], 707 | "layer0.opacity": 1, 708 | "content_margin": 3 709 | }, 710 | // 711 | // PANEL BACKGROUNDS 712 | // 713 | // Bottom panel background 714 | { 715 | "class": "panel_control", 716 | "layer0.inner_margin": [0,10], 717 | "layer0.opacity": 1, 718 | "layer0.tint": [29,30,31], 719 | "content_margin": 0 720 | }, 721 | // Quick panel background 722 | { 723 | "class": "overlay_control", 724 | "layer0.opacity": 1, 725 | "layer1.tint": [29,30,31], 726 | "layer1.inner_margin": [0,0,10,0], 727 | "layer1.opacity": 1, 728 | "content_margin": 0 729 | }, 730 | // 731 | // QUICK PANEL 732 | // 733 | { 734 | "class": "quick_panel", 735 | "row_padding": 6, 736 | "layer0.tint": [223,225,232], 737 | "layer0.opacity": 1, 738 | "dark_content": true 739 | }, 740 | { 741 | "class": "quick_panel_row", 742 | "layer0.tint": [53,53,54], 743 | "layer0.opacity": 1 744 | }, 745 | { 746 | "class": "quick_panel_row", 747 | "attributes": ["hover"], 748 | "layer0.tint": [61,61,61] 749 | }, 750 | { 751 | "class": "quick_panel_row", 752 | "attributes": ["selected"], 753 | "layer0.tint": [61,61,61] 754 | }, 755 | { 756 | "class": "quick_panel_label", 757 | "fg": [200,203,207], 758 | "match_fg": [255,255,255], 759 | "selected_fg": [255,255,255], 760 | "selected_match_fg": [255,255,255] 761 | }, 762 | { 763 | "class": "quick_panel_path_label", 764 | "fg": [140,141,143], 765 | "match_fg": [140,141,143], 766 | "selected_fg": [255,255,255], 767 | "selected_match_fg": [255,255,255] 768 | }, 769 | { 770 | "class": "quick_panel_score_label", 771 | "fg": [140,141,143], 772 | "selected_fg": [255,255,255] 773 | }, 774 | // 775 | // MINI QUICK PANEL 776 | // 777 | { 778 | "class": "mini_quick_panel_row", 779 | "layer0.tint": [53,53,54], 780 | "layer0.opacity": 1 781 | }, 782 | { 783 | "class": "mini_quick_panel_row", 784 | "attributes": ["hover"], 785 | "layer0.tint": [61,61,61] 786 | }, 787 | { 788 | "class": "mini_quick_panel_row", 789 | "attributes": ["selected"], 790 | "layer0.tint": [61,61,61] 791 | }, 792 | // 793 | // CODE COMPLETION DROPDOWN 794 | // 795 | { 796 | "class": "popup_control", 797 | "content_margin": 1, 798 | "layer0.tint": [53,53,54], 799 | "layer0.opacity": 1 800 | }, 801 | { 802 | "class": "auto_complete", 803 | "row_padding": [2,2] 804 | }, 805 | { 806 | "class": "auto_complete_label", 807 | "fg": [200,203,207], 808 | "match_fg": [255,255,255], 809 | "selected_fg": [200,203,207], 810 | "selected_match_fg": [255,255,255] 811 | }, 812 | { 813 | "class": "table_row", 814 | "layer0.tint": [61,61,61], 815 | "layer0.opacity": 0, 816 | "layer0.inner_margin": 0 817 | }, 818 | { 819 | "class": "table_row", 820 | "attributes": ["selected"], 821 | "layer0.opacity": 1 822 | }, 823 | // 824 | // BOTTOM PANEL BUTTONS 825 | // 826 | // Button group middle 827 | { 828 | "class": "icon_button_control", 829 | "layer1.opacity": 0, 830 | "layer1.tint": [42,43,43], 831 | "content_margin": 7 832 | }, 833 | { 834 | "class": "icon_button_control", 835 | "attributes": ["selected"], 836 | "layer0.opacity": 0 837 | }, 838 | // Button group left 839 | { 840 | "class": "icon_button_control", 841 | "attributes": ["left"] 842 | }, 843 | // Button group left 844 | { 845 | "class": "icon_button_control", 846 | "attributes": ["left"] 847 | }, 848 | { 849 | "class": "icon_button_control", 850 | "attributes": ["left","selected"] 851 | }, 852 | // Button group right 853 | { 854 | "class": "icon_button_control", 855 | "attributes": ["right"] 856 | }, 857 | { 858 | "class": "icon_button_control", 859 | "attributes": ["right","selected"] 860 | }, 861 | // Button single 862 | { 863 | "class": "icon_button_control", 864 | "attributes": ["left","right"] 865 | }, 866 | { 867 | "class": "icon_button_control", 868 | "attributes": ["left","right","selected"] 869 | }, 870 | // 871 | // BOTTOM PANEL ICONS - GROUP 1 872 | // 873 | // Regex search button 874 | { 875 | "class": "icon_regex", 876 | "layer0.texture": "Theme - Spacefunk/Spacefunk/regex.png", 877 | "layer0.tint": [115,118,120], 878 | "layer0.opacity": 1, 879 | "content_margin": 8 880 | }, 881 | { 882 | "class": "icon_regex", 883 | "parents": [{"class": "icon_button_control","attributes": ["selected"]}], 884 | "layer0.tint": [255,255,255] 885 | }, 886 | // Case sensitive search button 887 | { 888 | "class": "icon_case", 889 | "layer0.texture": "Theme - Spacefunk/Spacefunk/casesens.png", 890 | "layer0.tint": [115,118,120], 891 | "layer0.opacity": 1, 892 | "content_margin": 8 893 | }, 894 | { 895 | "class": "icon_case", 896 | "parents": [{"class": "icon_button_control","attributes": ["selected"]}], 897 | "layer0.tint": [255,255,255] 898 | }, 899 | // Match whole word search button 900 | { 901 | "class": "icon_whole_word", 902 | "layer0.texture": "Theme - Spacefunk/Spacefunk/wholeword.png", 903 | "layer0.tint": [115,118,120], 904 | "layer0.opacity": 1, 905 | "content_margin": 8 906 | }, 907 | { 908 | "class": "icon_whole_word", 909 | "parents": [{"class": "icon_button_control","attributes": ["selected"]}], 910 | "layer0.tint": [255,255,255] 911 | }, 912 | // 913 | // BOTTOM PANEL ICONS - GROUP 1 (EXTENDED: FIND IN FILES) 914 | // 915 | // Show search context button 916 | { 917 | "class": "icon_context", 918 | "layer0.texture": "Theme - Spacefunk/Spacefunk/context.png", 919 | "layer0.tint": [115,118,120], 920 | "layer0.opacity": 1, 921 | "content_margin": 8 922 | }, 923 | { 924 | "class": "icon_context", 925 | "parents": [{"class": "icon_button_control","attributes": ["selected"]}], 926 | "layer0.tint": [255,255,255] 927 | }, 928 | // Use search buffer 929 | { 930 | "class": "icon_use_buffer", 931 | "layer0.texture": "Theme - Spacefunk/Spacefunk/buffer.png", 932 | "layer0.tint": [115,118,120], 933 | "layer0.opacity": 1, 934 | "content_margin": 8 935 | }, 936 | { 937 | "class": "icon_use_buffer", 938 | "parents": [{"class": "icon_button_control","attributes": ["selected"]}], 939 | "layer0.tint": [255,255,255] 940 | }, 941 | // 942 | // BOTTOM PANEL ICONS - GROUP 2 943 | // 944 | // Reverse search direction button (ST2 only) 945 | { 946 | "class": "icon_reverse", 947 | "layer0.texture": "Theme - Spacefunk/Spacefunk/reverse.png", 948 | "layer0.tint": [115,118,120], 949 | "layer0.opacity": 1, 950 | "content_margin": 8 951 | }, 952 | { 953 | "class": "icon_reverse", 954 | "parents": [{"class": "icon_button_control","attributes": ["selected"]}], 955 | "layer0.tint": [255,255,255] 956 | }, 957 | // Search wrap button 958 | { 959 | "class": "icon_wrap", 960 | "layer0.texture": "Theme - Spacefunk/Spacefunk/wrap.png", 961 | "layer0.tint": [115,118,120], 962 | "layer0.opacity": 1, 963 | "content_margin": 8 964 | }, 965 | { 966 | "class": "icon_wrap", 967 | "parents": [{"class": "icon_button_control","attributes": ["selected"]}], 968 | "layer0.tint": [255,255,255] 969 | }, 970 | // Search in selection button 971 | { 972 | "class": "icon_in_selection", 973 | "layer0.texture": "Theme - Spacefunk/Spacefunk/selection.png", 974 | "layer0.tint": [115,118,120], 975 | "layer0.opacity": 1, 976 | "content_margin": 8 977 | }, 978 | { 979 | "class": "icon_in_selection", 980 | "parents": [{"class": "icon_button_control","attributes": ["selected"]}], 981 | "layer0.tint": [255,255,255] 982 | }, 983 | // 984 | // BOTTOM PANEL ICONS - GROUP 3 985 | // 986 | // Preserve case button 987 | { 988 | "class": "icon_preserve_case", 989 | "layer0.texture": "Theme - Spacefunk/Spacefunk/casesens.png", 990 | "layer0.tint": [115,118,120], 991 | "layer0.opacity": 1, 992 | "content_margin": 8 993 | }, 994 | { 995 | "class": "icon_preserve_case", 996 | "parents": [{"class": "icon_button_control","attributes": ["selected"]}], 997 | "layer0.tint": [255,255,255] 998 | }, 999 | // 1000 | // BOTTOM PANEL ICONS - GROUP 4 1001 | // 1002 | // Highlight results button 1003 | { 1004 | "class": "icon_highlight", 1005 | "layer0.texture": "Theme - Spacefunk/Spacefunk/highlight.png", 1006 | "layer0.tint": [115,118,120], 1007 | "layer0.opacity": 1, 1008 | "content_margin": 8 1009 | }, 1010 | { 1011 | "class": "icon_highlight", 1012 | "parents": [{"class": "icon_button_control","attributes": ["selected"]}], 1013 | "layer0.tint": [255,255,255] 1014 | }, 1015 | // 1016 | // FIX ICON BUG BY REMOVING THEM 1017 | // 1018 | { 1019 | "class": "icon_file_type", 1020 | "content_margin": 0, 1021 | "layer0.opacity": 0 1022 | }, 1023 | { 1024 | "class": "icon_folder", 1025 | "layer0.texture": "", 1026 | "layer0.opacity": 0, 1027 | "content_margin": 0 1028 | }, 1029 | { 1030 | "class": "icon_folder_loading", 1031 | "content_margin": 0, 1032 | "layer0.opacity": 0 1033 | } 1034 | ] 1035 | -------------------------------------------------------------------------------- /Spacefunk/Widget - Spacefunk (Blue Monday).stTheme: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | author 6 | Twiebie 7 | comment 8 | Spacefunk 9 | name 10 | Spacefunk 11 | settings 12 | 13 | 14 | settings 15 | 16 | background 17 | #333d46 18 | caret 19 | #ECCC87 20 | foreground 21 | #E9EDF5 22 | invisibles 23 | #4f5b66 24 | selection 25 | #4f5b66 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Spacefunk/Widget - Spacefunk (Blue Monday).sublime-settings: -------------------------------------------------------------------------------- 1 | { 2 | "color_scheme": "Packages/Theme - Spacefunk/Spacefunk/Widget - Spacefunk (Blue Monday).stTheme", 3 | "draw_shadows": false 4 | } -------------------------------------------------------------------------------- /Spacefunk/Widget - Spacefunk (Grey Tuesday).stTheme: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | author 6 | Twiebie 7 | comment 8 | Spacefunk 9 | name 10 | Spacefunk 11 | settings 12 | 13 | 14 | settings 15 | 16 | background 17 | #313233 18 | caret 19 | #ECCC87 20 | foreground 21 | #F5F5F5 22 | invisibles 23 | #4f5b66 24 | selection 25 | #4f5b66 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Spacefunk/Widget - Spacefunk (Grey Tuesday).sublime-settings: -------------------------------------------------------------------------------- 1 | { 2 | "color_scheme": "Packages/Theme - Spacefunk/Spacefunk/Widget - Spacefunk (Grey Tuesday).stTheme", 3 | "draw_shadows": false 4 | } -------------------------------------------------------------------------------- /Spacefunk/buffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperjorna/ST-Spacefunk/e2a060fe462da03b954663957850cb75323bd894/Spacefunk/buffer.png -------------------------------------------------------------------------------- /Spacefunk/buffer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperjorna/ST-Spacefunk/e2a060fe462da03b954663957850cb75323bd894/Spacefunk/buffer@2x.png -------------------------------------------------------------------------------- /Spacefunk/casesens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperjorna/ST-Spacefunk/e2a060fe462da03b954663957850cb75323bd894/Spacefunk/casesens.png -------------------------------------------------------------------------------- /Spacefunk/casesens@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperjorna/ST-Spacefunk/e2a060fe462da03b954663957850cb75323bd894/Spacefunk/casesens@2x.png -------------------------------------------------------------------------------- /Spacefunk/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperjorna/ST-Spacefunk/e2a060fe462da03b954663957850cb75323bd894/Spacefunk/circle.png -------------------------------------------------------------------------------- /Spacefunk/circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperjorna/ST-Spacefunk/e2a060fe462da03b954663957850cb75323bd894/Spacefunk/circle@2x.png -------------------------------------------------------------------------------- /Spacefunk/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperjorna/ST-Spacefunk/e2a060fe462da03b954663957850cb75323bd894/Spacefunk/close.png -------------------------------------------------------------------------------- /Spacefunk/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperjorna/ST-Spacefunk/e2a060fe462da03b954663957850cb75323bd894/Spacefunk/close@2x.png -------------------------------------------------------------------------------- /Spacefunk/context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperjorna/ST-Spacefunk/e2a060fe462da03b954663957850cb75323bd894/Spacefunk/context.png -------------------------------------------------------------------------------- /Spacefunk/context@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperjorna/ST-Spacefunk/e2a060fe462da03b954663957850cb75323bd894/Spacefunk/context@2x.png -------------------------------------------------------------------------------- /Spacefunk/folder-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperjorna/ST-Spacefunk/e2a060fe462da03b954663957850cb75323bd894/Spacefunk/folder-closed.png -------------------------------------------------------------------------------- /Spacefunk/folder-closed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperjorna/ST-Spacefunk/e2a060fe462da03b954663957850cb75323bd894/Spacefunk/folder-closed@2x.png -------------------------------------------------------------------------------- /Spacefunk/folder-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperjorna/ST-Spacefunk/e2a060fe462da03b954663957850cb75323bd894/Spacefunk/folder-open.png -------------------------------------------------------------------------------- /Spacefunk/folder-open@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperjorna/ST-Spacefunk/e2a060fe462da03b954663957850cb75323bd894/Spacefunk/folder-open@2x.png -------------------------------------------------------------------------------- /Spacefunk/highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperjorna/ST-Spacefunk/e2a060fe462da03b954663957850cb75323bd894/Spacefunk/highlight.png -------------------------------------------------------------------------------- /Spacefunk/highlight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperjorna/ST-Spacefunk/e2a060fe462da03b954663957850cb75323bd894/Spacefunk/highlight@2x.png -------------------------------------------------------------------------------- /Spacefunk/regex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperjorna/ST-Spacefunk/e2a060fe462da03b954663957850cb75323bd894/Spacefunk/regex.png -------------------------------------------------------------------------------- /Spacefunk/regex@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperjorna/ST-Spacefunk/e2a060fe462da03b954663957850cb75323bd894/Spacefunk/regex@2x.png -------------------------------------------------------------------------------- /Spacefunk/reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperjorna/ST-Spacefunk/e2a060fe462da03b954663957850cb75323bd894/Spacefunk/reverse.png -------------------------------------------------------------------------------- /Spacefunk/reverse@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperjorna/ST-Spacefunk/e2a060fe462da03b954663957850cb75323bd894/Spacefunk/reverse@2x.png -------------------------------------------------------------------------------- /Spacefunk/selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperjorna/ST-Spacefunk/e2a060fe462da03b954663957850cb75323bd894/Spacefunk/selection.png -------------------------------------------------------------------------------- /Spacefunk/selection@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperjorna/ST-Spacefunk/e2a060fe462da03b954663957850cb75323bd894/Spacefunk/selection@2x.png -------------------------------------------------------------------------------- /Spacefunk/wholeword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperjorna/ST-Spacefunk/e2a060fe462da03b954663957850cb75323bd894/Spacefunk/wholeword.png -------------------------------------------------------------------------------- /Spacefunk/wholeword@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperjorna/ST-Spacefunk/e2a060fe462da03b954663957850cb75323bd894/Spacefunk/wholeword@2x.png -------------------------------------------------------------------------------- /Spacefunk/wrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperjorna/ST-Spacefunk/e2a060fe462da03b954663957850cb75323bd894/Spacefunk/wrap.png -------------------------------------------------------------------------------- /Spacefunk/wrap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperjorna/ST-Spacefunk/e2a060fe462da03b954663957850cb75323bd894/Spacefunk/wrap@2x.png -------------------------------------------------------------------------------- /messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "install": "messages/install.txt", 3 | "1.0.1": "messages/1.0.1.txt", 4 | "1.0.2": "messages/1.0.2.txt", 5 | "1.0.3": "messages/1.0.3.txt", 6 | "1.0.4": "messages/1.0.4.txt", 7 | "1.0.5": "messages/1.0.5.txt", 8 | "1.0.6": "messages/1.0.6.txt", 9 | "1.0.7": "messages/1.0.7.txt", 10 | "1.0.8": "messages/1.0.8.txt", 11 | "1.0.9": "messages/1.0.9.txt" 12 | } 13 | -------------------------------------------------------------------------------- /messages/1.0.1.txt: -------------------------------------------------------------------------------- 1 | v1.0.1 (29-01-2014) 2 | ------------------- 3 | Hey there, 4 | 5 | This is a small update to the Spacefunk theme. 6 | 7 | Included is a new light version of the sidebar. 8 | Add the following line to your user preferences file to activate it: 9 | 10 | { 11 | "spacefunk_sidebar_light": true 12 | } 13 | 14 | Happy coding! 15 | -------------------------------------------------------------------------------- /messages/1.0.2.txt: -------------------------------------------------------------------------------- 1 | v1.0.2 (05-03-2014) 2 | ------------------- 3 | Hey there, 4 | 5 | A small issue with the horizontal scrollbar has been fixed. 6 | 7 | Happy coding! 8 | -------------------------------------------------------------------------------- /messages/1.0.3.txt: -------------------------------------------------------------------------------- 1 | v1.0.3 (27-03-2014) 2 | ------------------- 3 | Hi there, 4 | 5 | The Future Funk colour schemes are no longer included with Spacefunk and will be maintained separately. 6 | 7 | You can find them on Package Control or GitHub: 8 | - https://sublime.wbond.net/packages/Future Funk - Color Scheme 9 | - https://github.com/Twiebie/ST-FutureFunk 10 | 11 | Thanks! 12 | -------------------------------------------------------------------------------- /messages/1.0.4.txt: -------------------------------------------------------------------------------- 1 | v1.0.4 (08-04-2014) 2 | ------------------- 3 | Hi there, 4 | 5 | This is a quick fix for the reversed code folding arrows. 6 | 7 | Happy coding! 8 | -------------------------------------------------------------------------------- /messages/1.0.5.txt: -------------------------------------------------------------------------------- 1 | v1.0.5 (13-05-2014) 2 | ------------------- 3 | Hi there, 4 | 5 | The following was fixed in this small update: 6 | - Tabs not flush with sidebar. 7 | 8 | Happy coding! 9 | -------------------------------------------------------------------------------- /messages/1.0.6.txt: -------------------------------------------------------------------------------- 1 | v1.0.6 (01-07-2014) 2 | ------------------- 3 | Hi there, 4 | 5 | The following was fixed in this small update: 6 | - Fix for sidebar icons by jCrip. 7 | 8 | Happy coding! 9 | -------------------------------------------------------------------------------- /messages/1.0.7.txt: -------------------------------------------------------------------------------- 1 | v1.0.7 (19-08-2014) 2 | ------------------- 3 | Hi, 4 | 5 | Just a small update: 6 | - Slightly increased the font size in the tabs and side container. 7 | 8 | Happy coding! 9 | -------------------------------------------------------------------------------- /messages/1.0.8.txt: -------------------------------------------------------------------------------- 1 | v1.0.8 (21-08-2014) 2 | ------------------- 3 | Hi, 4 | 5 | Another small update: 6 | - Fix for selected sidebar entry. 7 | - Fix sidebar vertical scrollbar block. 8 | 9 | Happy coding! 10 | -------------------------------------------------------------------------------- /messages/1.0.9.txt: -------------------------------------------------------------------------------- 1 | v1.0.9 (23-08-2014) 2 | ------------------- 3 | Hi, 4 | 5 | - Slightly decreased font size in the tabs to fix a clipping issue. 6 | 7 | Happy coding! 8 | -------------------------------------------------------------------------------- /messages/install.txt: -------------------------------------------------------------------------------- 1 | Hi there, 2 | 3 | Here are some simple instructions to get you going. 4 | Copy and paste one of the following bits to your user preferences file. 5 | 6 | Blue Monday: 7 | { 8 | "theme": "Spacefunk (Blue Monday).sublime-theme" 9 | } 10 | 11 | Grey Tuesday: 12 | { 13 | "theme": "Spacefunk (Grey Tuesday).sublime-theme" 14 | } 15 | 16 | Include an additional line for a light sidebar if you fancy: 17 | { 18 | "spacefunk_sidebar_light": true 19 | } 20 | 21 | Restart Sublime Text to make sure all changes are applied. 22 | 23 | Enjoy! 24 | --------------------------------------------------------------------------------