├── .gitattributes ├── .gitignore ├── Monokai.StorableColorTheme.ps1xml └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ################# 2 | ## Eclipse 3 | ################# 4 | 5 | *.pydevproject 6 | .project 7 | .metadata 8 | bin/ 9 | tmp/ 10 | *.tmp 11 | *.bak 12 | *.swp 13 | *~.nib 14 | local.properties 15 | .classpath 16 | .settings/ 17 | .loadpath 18 | 19 | # External tool builders 20 | .externalToolBuilders/ 21 | 22 | # Locally stored "Eclipse launch configurations" 23 | *.launch 24 | 25 | # CDT-specific 26 | .cproject 27 | 28 | # PDT-specific 29 | .buildpath 30 | 31 | 32 | ################# 33 | ## Visual Studio 34 | ################# 35 | 36 | ## Ignore Visual Studio temporary files, build results, and 37 | ## files generated by popular Visual Studio add-ons. 38 | 39 | # User-specific files 40 | *.suo 41 | *.user 42 | *.sln.docstates 43 | 44 | # Build results 45 | [Dd]ebug/ 46 | [Rr]elease/ 47 | *_i.c 48 | *_p.c 49 | *.ilk 50 | *.meta 51 | *.obj 52 | *.pch 53 | *.pdb 54 | *.pgc 55 | *.pgd 56 | *.rsp 57 | *.sbr 58 | *.tlb 59 | *.tli 60 | *.tlh 61 | *.tmp 62 | *.vspscc 63 | .builds 64 | *.dotCover 65 | 66 | ## TODO: If you have NuGet Package Restore enabled, uncomment this 67 | #packages/ 68 | 69 | # Visual C++ cache files 70 | ipch/ 71 | *.aps 72 | *.ncb 73 | *.opensdf 74 | *.sdf 75 | 76 | # Visual Studio profiler 77 | *.psess 78 | *.vsp 79 | 80 | # ReSharper is a .NET coding add-in 81 | _ReSharper* 82 | 83 | # Installshield output folder 84 | [Ee]xpress 85 | 86 | # DocProject is a documentation generator add-in 87 | DocProject/buildhelp/ 88 | DocProject/Help/*.HxT 89 | DocProject/Help/*.HxC 90 | DocProject/Help/*.hhc 91 | DocProject/Help/*.hhk 92 | DocProject/Help/*.hhp 93 | DocProject/Help/Html2 94 | DocProject/Help/html 95 | 96 | # Click-Once directory 97 | publish 98 | 99 | # Others 100 | [Bb]in 101 | [Oo]bj 102 | sql 103 | TestResults 104 | *.Cache 105 | ClientBin 106 | stylecop.* 107 | ~$* 108 | *.dbmdl 109 | Generated_Code #added for RIA/Silverlight projects 110 | 111 | # Backup & report files from converting an old project file to a newer 112 | # Visual Studio version. Backup files are not needed, because we have git ;-) 113 | _UpgradeReport_Files/ 114 | Backup*/ 115 | UpgradeLog*.XML 116 | 117 | 118 | 119 | ############ 120 | ## Windows 121 | ############ 122 | 123 | # Windows image file caches 124 | Thumbs.db 125 | 126 | # Folder config file 127 | Desktop.ini 128 | 129 | 130 | ############# 131 | ## Python 132 | ############# 133 | 134 | *.py[co] 135 | 136 | # Packages 137 | *.egg 138 | *.egg-info 139 | dist 140 | build 141 | eggs 142 | parts 143 | bin 144 | var 145 | sdist 146 | develop-eggs 147 | .installed.cfg 148 | 149 | # Installer logs 150 | pip-log.txt 151 | 152 | # Unit test / coverage reports 153 | .coverage 154 | .tox 155 | 156 | #Translations 157 | *.mo 158 | 159 | #Mr Developer 160 | .mr.developer.cfg 161 | 162 | # Mac crap 163 | .DS_Store 164 | -------------------------------------------------------------------------------- /Monokai.StorableColorTheme.ps1xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ErrorForegroundColor 5 | ErrorBackgroundColor 6 | WarningForegroundColor 7 | WarningBackgroundColor 8 | VerboseForegroundColor 9 | VerboseBackgroundColor 10 | DebugForegroundColor 11 | DebugBackgroundColor 12 | ConsolePaneBackgroundColor 13 | ConsolePaneTextBackgroundColor 14 | ConsolePaneForegroundColor 15 | ScriptPaneBackgroundColor 16 | ScriptPaneForegroundColor 17 | TokenColors\Attribute 18 | TokenColors\Command 19 | TokenColors\CommandArgument 20 | TokenColors\CommandParameter 21 | TokenColors\Comment 22 | TokenColors\GroupEnd 23 | TokenColors\GroupStart 24 | TokenColors\Keyword 25 | TokenColors\LineContinuation 26 | TokenColors\LoopLabel 27 | TokenColors\Member 28 | TokenColors\NewLine 29 | TokenColors\Number 30 | TokenColors\Operator 31 | TokenColors\Position 32 | TokenColors\StatementSeparator 33 | TokenColors\String 34 | TokenColors\Type 35 | TokenColors\Unknown 36 | TokenColors\Variable 37 | ConsoleTokenColors\Attribute 38 | ConsoleTokenColors\Command 39 | ConsoleTokenColors\CommandArgument 40 | ConsoleTokenColors\CommandParameter 41 | ConsoleTokenColors\Comment 42 | ConsoleTokenColors\GroupEnd 43 | ConsoleTokenColors\GroupStart 44 | ConsoleTokenColors\Keyword 45 | ConsoleTokenColors\LineContinuation 46 | ConsoleTokenColors\LoopLabel 47 | ConsoleTokenColors\Member 48 | ConsoleTokenColors\NewLine 49 | ConsoleTokenColors\Number 50 | ConsoleTokenColors\Operator 51 | ConsoleTokenColors\Position 52 | ConsoleTokenColors\StatementSeparator 53 | ConsoleTokenColors\String 54 | ConsoleTokenColors\Type 55 | ConsoleTokenColors\Unknown 56 | ConsoleTokenColors\Variable 57 | XmlTokenColors\CharacterData 58 | XmlTokenColors\QuotedString 59 | XmlTokenColors\Comment 60 | XmlTokenColors\CommentDelimiter 61 | XmlTokenColors\15 62 | XmlTokenColors\13 63 | XmlTokenColors\12 64 | XmlTokenColors\14 65 | XmlTokenColors\18 66 | XmlTokenColors\MarkupExtension 67 | XmlTokenColors\Quote 68 | XmlTokenColors\17 69 | XmlTokenColors\ElementName 70 | XmlTokenColors\11 71 | XmlTokenColors\19 72 | XmlTokenColors\16 73 | XmlTokenColors\Attribute 74 | XmlTokenColors\10 75 | XmlTokenColors\Tag 76 | XmlTokenColors\Text 77 | 78 | 79 | 80 | 255 81 | 255 82 | 0 83 | 0 84 | 1 85 | 1 86 | 0 87 | 0 88 | 89 | 90 | 0 91 | 255 92 | 255 93 | 255 94 | 0 95 | 1 96 | 1 97 | 1 98 | 99 | 100 | 255 101 | 255 102 | 140 103 | 0 104 | 1 105 | 1 106 | 0.2622507 107 | 0 108 | 109 | 110 | 0 111 | 255 112 | 255 113 | 255 114 | 0 115 | 1 116 | 1 117 | 1 118 | 119 | 120 | 255 121 | 0 122 | 255 123 | 255 124 | 1 125 | 0 126 | 1 127 | 1 128 | 129 | 130 | 0 131 | 255 132 | 255 133 | 255 134 | 0 135 | 1 136 | 1 137 | 1 138 | 139 | 140 | 255 141 | 0 142 | 255 143 | 255 144 | 1 145 | 0 146 | 1 147 | 1 148 | 149 | 150 | 0 151 | 255 152 | 255 153 | 255 154 | 0 155 | 1 156 | 1 157 | 1 158 | 159 | 160 | 255 161 | 1 162 | 36 163 | 86 164 | 1 165 | 0.000303527 166 | 0.017641956 167 | 0.0930589661 168 | 169 | 170 | 255 171 | 1 172 | 36 173 | 86 174 | 1 175 | 0.000303527 176 | 0.017641956 177 | 0.0930589661 178 | 179 | 180 | 255 181 | 245 182 | 245 183 | 245 184 | 1 185 | 0.913098633 186 | 0.913098633 187 | 0.913098633 188 | 189 | 190 | 255 191 | 39 192 | 40 193 | 34 194 | 1 195 | 0.0202885643 196 | 0.0212190114 197 | 0.0159962941 198 | 199 | 200 | 255 201 | 248 202 | 248 203 | 242 204 | 1 205 | 0.9386857 206 | 0.9386857 207 | 0.8879231 208 | 209 | 210 | 255 211 | 255 212 | 255 213 | 255 214 | 1 215 | 1 216 | 1 217 | 1 218 | 219 | 220 | 255 221 | 102 222 | 217 223 | 239 224 | 1 225 | 0.13286832 226 | 0.6938718 227 | 0.8631572 228 | 229 | 230 | 255 231 | 174 232 | 129 233 | 255 234 | 1 235 | 0.4232677 236 | 0.219526231 237 | 1 238 | 239 | 240 | 255 241 | 166 242 | 226 243 | 46 244 | 1 245 | 0.38132605 246 | 0.7605245 247 | 0.0273208935 248 | 249 | 250 | 255 251 | 110 252 | 113 253 | 94 254 | 1 255 | 0.155926466 256 | 0.1651322 257 | 0.111932434 258 | 259 | 260 | 255 261 | 255 262 | 255 263 | 255 264 | 1 265 | 1 266 | 1 267 | 1 268 | 269 | 270 | 255 271 | 255 272 | 255 273 | 255 274 | 1 275 | 1 276 | 1 277 | 1 278 | 279 | 280 | 255 281 | 249 282 | 38 283 | 89 284 | 1 285 | 0.9473065 286 | 0.0193823632 287 | 0.09989873 288 | 289 | 290 | 255 291 | 255 292 | 255 293 | 255 294 | 1 295 | 1 296 | 1 297 | 1 298 | 299 | 300 | 255 301 | 174 302 | 129 303 | 255 304 | 1 305 | 0.4232677 306 | 0.219526231 307 | 1 308 | 309 | 310 | 255 311 | 253 312 | 151 313 | 31 314 | 1 315 | 0.9822506 316 | 0.309468955 317 | 0.0137020834 318 | 319 | 320 | 255 321 | 0 322 | 0 323 | 0 324 | 1 325 | 0 326 | 0 327 | 0 328 | 329 | 330 | 255 331 | 174 332 | 129 333 | 255 334 | 1 335 | 0.4232677 336 | 0.219526231 337 | 1 338 | 339 | 340 | 255 341 | 255 342 | 255 343 | 255 344 | 1 345 | 1 346 | 1 347 | 1 348 | 349 | 350 | 255 351 | 0 352 | 0 353 | 0 354 | 1 355 | 0 356 | 0 357 | 0 358 | 359 | 360 | 255 361 | 253 362 | 151 363 | 31 364 | 1 365 | 0.9822506 366 | 0.309468955 367 | 0.0137020834 368 | 369 | 370 | 255 371 | 230 372 | 219 373 | 116 374 | 1 375 | 0.791298 376 | 0.7083758 377 | 0.1746474 378 | 379 | 380 | 255 381 | 253 382 | 151 383 | 31 384 | 1 385 | 0.9822506 386 | 0.309468955 387 | 0.0137020834 388 | 389 | 390 | 255 391 | 0 392 | 0 393 | 0 394 | 1 395 | 0 396 | 0 397 | 0 398 | 399 | 400 | 255 401 | 255 402 | 255 403 | 255 404 | 1 405 | 1 406 | 1 407 | 1 408 | 409 | 410 | 255 411 | 176 412 | 196 413 | 222 414 | 1 415 | 0.434153676 416 | 0.55201143 417 | 0.730460763 418 | 419 | 420 | 255 421 | 224 422 | 255 423 | 255 424 | 1 425 | 0.745404243 426 | 1 427 | 1 428 | 429 | 430 | 255 431 | 238 432 | 130 433 | 238 434 | 1 435 | 0.8549926 436 | 0.223227978 437 | 0.8549926 438 | 439 | 440 | 255 441 | 255 442 | 228 443 | 181 444 | 1 445 | 1 446 | 0.7758222 447 | 0.462077022 448 | 449 | 450 | 255 451 | 152 452 | 251 453 | 152 454 | 1 455 | 0.313988745 456 | 0.9646863 457 | 0.313988745 458 | 459 | 460 | 255 461 | 245 462 | 245 463 | 245 464 | 1 465 | 0.913098633 466 | 0.913098633 467 | 0.913098633 468 | 469 | 470 | 255 471 | 245 472 | 245 473 | 245 474 | 1 475 | 0.913098633 476 | 0.913098633 477 | 0.913098633 478 | 479 | 480 | 255 481 | 224 482 | 255 483 | 255 484 | 1 485 | 0.745404243 486 | 1 487 | 1 488 | 489 | 490 | 255 491 | 245 492 | 245 493 | 245 494 | 1 495 | 0.913098633 496 | 0.913098633 497 | 0.913098633 498 | 499 | 500 | 255 501 | 224 502 | 255 503 | 255 504 | 1 505 | 0.745404243 506 | 1 507 | 1 508 | 509 | 510 | 255 511 | 245 512 | 245 513 | 245 514 | 1 515 | 0.913098633 516 | 0.913098633 517 | 0.913098633 518 | 519 | 520 | 255 521 | 245 522 | 245 523 | 245 524 | 1 525 | 0.913098633 526 | 0.913098633 527 | 0.913098633 528 | 529 | 530 | 255 531 | 255 532 | 228 533 | 196 534 | 1 535 | 1 536 | 0.7758222 537 | 0.55201143 538 | 539 | 540 | 255 541 | 211 542 | 211 543 | 211 544 | 1 545 | 0.651405632 546 | 0.651405632 547 | 0.651405632 548 | 549 | 550 | 255 551 | 245 552 | 245 553 | 245 554 | 1 555 | 0.913098633 556 | 0.913098633 557 | 0.913098633 558 | 559 | 560 | 255 561 | 245 562 | 245 563 | 245 564 | 1 565 | 0.913098633 566 | 0.913098633 567 | 0.913098633 568 | 569 | 570 | 255 571 | 219 572 | 112 573 | 147 574 | 1 575 | 0.7083758 576 | 0.162029386 577 | 0.291770667 578 | 579 | 580 | 255 581 | 143 582 | 188 583 | 143 584 | 1 585 | 0.274677336 586 | 0.5028865 587 | 0.274677336 588 | 589 | 590 | 255 591 | 245 592 | 245 593 | 245 594 | 1 595 | 0.913098633 596 | 0.913098633 597 | 0.913098633 598 | 599 | 600 | 255 601 | 255 602 | 69 603 | 0 604 | 1 605 | 1 606 | 0.0595112443 607 | 0 608 | 609 | 610 | 255 611 | 128 612 | 128 613 | 128 614 | 1 615 | 0.215860531 616 | 0.215860531 617 | 0.215860531 618 | 619 | 620 | 255 621 | 0 622 | 0 623 | 139 624 | 1 625 | 0 626 | 0 627 | 0.258182883 628 | 629 | 630 | 255 631 | 0 632 | 100 633 | 0 634 | 1 635 | 0 636 | 0.127437681 637 | 0 638 | 639 | 640 | 255 641 | 0 642 | 128 643 | 0 644 | 1 645 | 0 646 | 0.215860531 647 | 0 648 | 649 | 650 | 255 651 | 0 652 | 0 653 | 0 654 | 1 655 | 0 656 | 0 657 | 0 658 | 659 | 660 | 255 661 | 0 662 | 0 663 | 0 664 | 1 665 | 0 666 | 0 667 | 0 668 | 669 | 670 | 255 671 | 0 672 | 0 673 | 0 674 | 1 675 | 0 676 | 0 677 | 0 678 | 679 | 680 | 255 681 | 0 682 | 0 683 | 0 684 | 1 685 | 0 686 | 0 687 | 0 688 | 689 | 690 | 255 691 | 0 692 | 0 693 | 0 694 | 1 695 | 0 696 | 0 697 | 0 698 | 699 | 700 | 255 701 | 255 702 | 140 703 | 0 704 | 1 705 | 1 706 | 0.2622507 707 | 0 708 | 709 | 710 | 255 711 | 0 712 | 0 713 | 255 714 | 1 715 | 0 716 | 0 717 | 1 718 | 719 | 720 | 255 721 | 0 722 | 0 723 | 0 724 | 1 725 | 0 726 | 0 727 | 0 728 | 729 | 730 | 255 731 | 139 732 | 0 733 | 0 734 | 1 735 | 0.258182883 736 | 0 737 | 0 738 | 739 | 740 | 255 741 | 0 742 | 0 743 | 0 744 | 1 745 | 0 746 | 0 747 | 0 748 | 749 | 750 | 255 751 | 0 752 | 0 753 | 0 754 | 1 755 | 0 756 | 0 757 | 0 758 | 759 | 760 | 255 761 | 0 762 | 0 763 | 0 764 | 1 765 | 0 766 | 0 767 | 0 768 | 769 | 770 | 255 771 | 255 772 | 0 773 | 0 774 | 1 775 | 1 776 | 0 777 | 0 778 | 779 | 780 | 255 781 | 0 782 | 0 783 | 0 784 | 1 785 | 0 786 | 0 787 | 0 788 | 789 | 790 | 255 791 | 0 792 | 0 793 | 139 794 | 1 795 | 0 796 | 0 797 | 0.258182883 798 | 799 | 800 | 255 801 | 0 802 | 0 803 | 0 804 | 1 805 | 0 806 | 0 807 | 0 808 | 809 | 810 | Monokai 811 | Consolas 812 | 10 813 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Monokai Theme 2 | ##### For Powershell ISE 3.0 3 | 4 | ## Install Instructions 5 | 6 | Path to Install: Tools > Options > Manage Themes > Import 7 | 8 | #####Enjoy! --------------------------------------------------------------------------------