安装
1.fedora
在官网 http://www.codeblocks.org 的download页面下载相应的tar包。解压后有四个rpm,依次安装codeblocks-libs、codeblocks、codeblocks-contrib-libs、codeblocks-contrib。没有安装contrib,就会有很多插件没有安装,包括很重要的链接动态库的插件。
2.ubuntu
添加ppa
1sudo add-apt-repository ppa:damien-moore/codeblocks-stable 2sudo apt-get update
安装
sudo apt install codeblocks codeblocks-contrib
添加颜色主题
先启动一次codeblocks,然后
vim ~/.config/codeblocks/default.conf
将其中
<colour_sets>
<default />
</colour_sets>
部分替换成以下代码
1<colour_sets> 2 <ACTIVE_COLOUR_SET> 3 <str><![CDATA[modnokai night shift v2]]></str> 4 </ACTIVE_COLOUR_SET> 5 <ACTIVE_LANG> 6 <str><![CDATA[C/C++]]></str> 7 </ACTIVE_LANG> 8 <bright_yellow> 9 <NAME> 10 <str><![CDATA[bright yellow]]></str> 11 </NAME> 12 <cc> 13 <style0> 14 <BACK> 15 <colour r="255" g="255" b="208" /> 16 </BACK> 17 <NAME> 18 <str><![CDATA[Default]]></str> 19 </NAME> 20 </style0> 21 <style1> 22 <BACK> 23 <colour r="255" g="255" b="208" /> 24 </BACK> 25 <NAME> 26 <str><![CDATA[Default]]></str> 27 </NAME> 28 </style1> 29 <style5> 30 <FORE> 31 <colour r="158" g="158" b="158" /> 32 </FORE> 33 <NAME> 34 <str><![CDATA[Comment (normal)]]></str> 35 </NAME> 36 </style5> 37 <style6> 38 <FORE> 39 <colour r="158" g="158" b="158" /> 40 </FORE> 41 <NAME> 42 <str><![CDATA[Comment (normal)]]></str> 43 </NAME> 44 </style6> 45 <style7> 46 <FORE> 47 <colour r="158" g="158" b="158" /> 48 </FORE> 49 <NAME> 50 <str><![CDATA[Comment (normal)]]></str> 51 </NAME> 52 </style7> 53 <style8> 54 <FORE> 55 <colour r="158" g="158" b="158" /> 56 </FORE> 57 <NAME> 58 <str><![CDATA[Comment (normal)]]></str> 59 </NAME> 60 </style8> 61 <style9> 62 <FORE> 63 <colour r="128" g="128" b="128" /> 64 </FORE> 65 <NAME> 66 <str><![CDATA[Comment line (normal)]]></str> 67 </NAME> 68 </style9> 69 <style10> 70 <FORE> 71 <colour r="128" g="128" b="128" /> 72 </FORE> 73 <NAME> 74 <str><![CDATA[Comment line (normal)]]></str> 75 </NAME> 76 </style10> 77 <style11> 78 <FORE> 79 <colour r="128" g="128" b="218" /> 80 </FORE> 81 <BOLD bool="0" /> 82 <NAME> 83 <str><![CDATA[Comment (documentation)]]></str> 84 </NAME> 85 </style11> 86 <style12> 87 <FORE> 88 <colour r="128" g="128" b="218" /> 89 </FORE> 90 <BOLD bool="0" /> 91 <NAME> 92 <str><![CDATA[Comment (documentation)]]></str> 93 </NAME> 94 </style12> 95 <style13> 96 <BOLD bool="0" /> 97 <NAME> 98 <str><![CDATA[Comment line (documentation)]]></str> 99 </NAME> 100 </style13> 101 <style14> 102 <BOLD bool="0" /> 103 <NAME> 104 <str><![CDATA[Comment line (documentation)]]></str> 105 </NAME> 106 </style14> 107 <style21> 108 <BOLD bool="0" /> 109 <NAME> 110 <str><![CDATA[Keyword]]></str> 111 </NAME> 112 </style21> 113 <style23> 114 <BOLD bool="0" /> 115 <NAME> 116 <str><![CDATA[User keyword]]></str> 117 </NAME> 118 </style23> 119 <style39> 120 <BACK> 121 <colour r="0" g="255" b="0" /> 122 </BACK> 123 <NAME> 124 <str><![CDATA[Active line]]></str> 125 </NAME> 126 </style39> 127 <NAME> 128 <str><![CDATA[C/C++]]></str> 129 </NAME> 130 <editor> 131 <keywords /> 132 </editor> 133 </cc> 134 </bright_yellow> 135 <dark_gray> 136 <NAME> 137 <str><![CDATA[dark gray]]></str> 138 </NAME> 139 <cc> 140 <style0> 141 <FORE> 142 <colour r="255" g="255" b="255" /> 143 </FORE> 144 <BACK> 145 <colour r="42" g="56" b="54" /> 146 </BACK> 147 <NAME> 148 <str><![CDATA[Default]]></str> 149 </NAME> 150 </style0> 151 <style1> 152 <FORE> 153 <colour r="255" g="255" b="255" /> 154 </FORE> 155 <BACK> 156 <colour r="42" g="56" b="54" /> 157 </BACK> 158 <NAME> 159 <str><![CDATA[Default]]></str> 160 </NAME> 161 </style1> 162 <style13> 163 <BOLD bool="0" /> 164 <NAME> 165 <str><![CDATA[Comment line (documentation)]]></str> 166 </NAME> 167 </style13> 168 <style14> 169 <BOLD bool="0" /> 170 <NAME> 171 <str><![CDATA[Comment line (documentation)]]></str> 172 </NAME> 173 </style14> 174 <style19> 175 <FORE> 176 <colour r="255" g="142" b="255" /> 177 </FORE> 178 <NAME> 179 <str><![CDATA[Number]]></str> 180 </NAME> 181 </style19> 182 <style21> 183 <FORE> 184 <colour r="140" g="196" b="255" /> 185 </FORE> 186 <BOLD bool="0" /> 187 <NAME> 188 <str><![CDATA[Keyword]]></str> 189 </NAME> 190 </style21> 191 <style23> 192 <FORE> 193 <colour r="255" g="230" b="80" /> 194 </FORE> 195 <BOLD bool="0" /> 196 <NAME> 197 <str><![CDATA[User keyword]]></str> 198 </NAME> 199 </style23> 200 <style27> 201 <FORE> 202 <colour r="255" g="128" b="0" /> 203 </FORE> 204 <NAME> 205 <str><![CDATA[String]]></str> 206 </NAME> 207 </style27> 208 <style28> 209 <FORE> 210 <colour r="255" g="128" b="0" /> 211 </FORE> 212 <NAME> 213 <str><![CDATA[String]]></str> 214 </NAME> 215 </style28> 216 <style34> 217 <FORE> 218 <colour r="115" g="210" b="22" /> 219 </FORE> 220 <NAME> 221 <str><![CDATA[Preprocessor]]></str> 222 </NAME> 223 </style34> 224 <style36> 225 <FORE> 226 <colour r="255" g="0" b="128" /> 227 </FORE> 228 <NAME> 229 <str><![CDATA[Operator]]></str> 230 </NAME> 231 </style36> 232 <style38> 233 <BACK> 234 <colour r="128" g="128" b="128" /> 235 </BACK> 236 <NAME> 237 <str><![CDATA[Selection]]></str> 238 </NAME> 239 </style38> 240 <style39> 241 <BACK> 242 <colour r="64" g="128" b="128" /> 243 </BACK> 244 <NAME> 245 <str><![CDATA[Active line]]></str> 246 </NAME> 247 </style39> 248 <NAME> 249 <str><![CDATA[C/C++]]></str> 250 </NAME> 251 <editor> 252 <keywords /> 253 </editor> 254 </cc> 255 </dark_gray> 256 <idel> 257 <NAME> 258 <str><![CDATA[idel]]></str> 259 </NAME> 260 <cc> 261 <style0> 262 <BACK> 263 <colour r="245" g="245" b="245" /> 264 </BACK> 265 <NAME> 266 <str><![CDATA[Default]]></str> 267 </NAME> 268 </style0> 269 <style1> 270 <BACK> 271 <colour r="245" g="245" b="245" /> 272 </BACK> 273 <NAME> 274 <str><![CDATA[Default]]></str> 275 </NAME> 276 </style1> 277 <style5> 278 <FORE> 279 <colour r="135" g="135" b="135" /> 280 </FORE> 281 <NAME> 282 <str><![CDATA[Comment (normal)]]></str> 283 </NAME> 284 </style5> 285 <style6> 286 <FORE> 287 <colour r="135" g="135" b="135" /> 288 </FORE> 289 <NAME> 290 <str><![CDATA[Comment (normal)]]></str> 291 </NAME> 292 </style6> 293 <style7> 294 <FORE> 295 <colour r="135" g="135" b="135" /> 296 </FORE> 297 <NAME> 298 <str><![CDATA[Comment (normal)]]></str> 299 </NAME> 300 </style7> 301 <style8> 302 <FORE> 303 <colour r="135" g="135" b="135" /> 304 </FORE> 305 <NAME> 306 <str><![CDATA[Comment (normal)]]></str> 307 </NAME> 308 </style8> 309 <style9> 310 <FORE> 311 <colour r="135" g="135" b="135" /> 312 </FORE> 313 <NAME> 314 <str><![CDATA[Comment line (normal)]]></str> 315 </NAME> 316 </style9> 317 <style10> 318 <FORE> 319 <colour r="135" g="135" b="135" /> 320 </FORE> 321 <NAME> 322 <str><![CDATA[Comment line (normal)]]></str> 323 </NAME> 324 </style10> 325 <style11> 326 <BOLD bool="0" /> 327 <NAME> 328 <str><![CDATA[Comment (documentation)]]></str> 329 </NAME> 330 </style11> 331 <style12> 332 <BOLD bool="0" /> 333 <NAME> 334 <str><![CDATA[Comment (documentation)]]></str> 335 </NAME> 336 </style12> 337 <style21> 338 <FORE> 339 <colour r="255" g="128" b="64" /> 340 </FORE> 341 <BOLD bool="0" /> 342 <NAME> 343 <str><![CDATA[Keyword]]></str> 344 </NAME> 345 </style21> 346 <style23> 347 <FORE> 348 <colour r="156" g="37" b="166" /> 349 </FORE> 350 <BOLD bool="0" /> 351 <NAME> 352 <str><![CDATA[User keyword]]></str> 353 </NAME> 354 </style23> 355 <style27> 356 <FORE> 357 <colour r="0" g="155" b="45" /> 358 </FORE> 359 <NAME> 360 <str><![CDATA[String]]></str> 361 </NAME> 362 </style27> 363 <style28> 364 <FORE> 365 <colour r="0" g="155" b="45" /> 366 </FORE> 367 <NAME> 368 <str><![CDATA[String]]></str> 369 </NAME> 370 </style28> 371 <style34> 372 <FORE> 373 <colour r="0" g="128" b="255" /> 374 </FORE> 375 <NAME> 376 <str><![CDATA[Preprocessor]]></str> 377 </NAME> 378 </style34> 379 <style39> 380 <BACK> 381 <colour r="0" g="255" b="0" /> 382 </BACK> 383 <NAME> 384 <str><![CDATA[Active line]]></str> 385 </NAME> 386 </style39> 387 <NAME> 388 <str><![CDATA[C/C++]]></str> 389 </NAME> 390 <editor> 391 <keywords /> 392 </editor> 393 </cc> 394 </idel> 395 <oblivion> 396 <NAME> 397 <str><![CDATA[oblivion]]></str> 398 </NAME> 399 <cc> 400 <style0> 401 <FORE> 402 <colour r="238" g="238" b="236" /> 403 </FORE> 404 <BACK> 405 <colour r="46" g="52" b="54" /> 406 </BACK> 407 <NAME> 408 <str><![CDATA[Default]]></str> 409 </NAME> 410 </style0> 411 <style1> 412 <FORE> 413 <colour r="238" g="238" b="236" /> 414 </FORE> 415 <BACK> 416 <colour r="46" g="52" b="54" /> 417 </BACK> 418 <NAME> 419 <str><![CDATA[Default]]></str> 420 </NAME> 421 </style1> 422 <style5> 423 <FORE> 424 <colour r="136" g="138" b="133" /> 425 </FORE> 426 <NAME> 427 <str><![CDATA[Comment (normal)]]></str> 428 </NAME> 429 </style5> 430 <style6> 431 <FORE> 432 <colour r="136" g="138" b="133" /> 433 </FORE> 434 <NAME> 435 <str><![CDATA[Comment (normal)]]></str> 436 </NAME> 437 </style6> 438 <style7> 439 <FORE> 440 <colour r="136" g="138" b="133" /> 441 </FORE> 442 <NAME> 443 <str><![CDATA[Comment (normal)]]></str> 444 </NAME> 445 </style7> 446 <style8> 447 <FORE> 448 <colour r="136" g="138" b="133" /> 449 </FORE> 450 <NAME> 451 <str><![CDATA[Comment (normal)]]></str> 452 </NAME> 453 </style8> 454 <style11> 455 <FORE> 456 <colour r="52" g="101" b="164" /> 457 </FORE> 458 <BOLD bool="0" /> 459 <NAME> 460 <str><![CDATA[Comment (documentation)]]></str> 461 </NAME> 462 </style11> 463 <style12> 464 <FORE> 465 <colour r="52" g="101" b="164" /> 466 </FORE> 467 <BOLD bool="0" /> 468 <NAME> 469 <str><![CDATA[Comment (documentation)]]></str> 470 </NAME> 471 </style12> 472 <style17> 473 <FORE> 474 <colour r="164" g="0" b="0" /> 475 </FORE> 476 <NAME> 477 <str><![CDATA[Comment keyword error (documentation)]]></str> 478 </NAME> 479 </style17> 480 <style18> 481 <FORE> 482 <colour r="164" g="0" b="0" /> 483 </FORE> 484 <NAME> 485 <str><![CDATA[Comment keyword error (documentation)]]></str> 486 </NAME> 487 </style18> 488 <style19> 489 <FORE> 490 <colour r="173" g="127" b="168" /> 491 </FORE> 492 <BACK> 493 <colour r="46" g="52" b="54" /> 494 </BACK> 495 <BOLD bool="1" /> 496 <NAME> 497 <str><![CDATA[Number]]></str> 498 </NAME> 499 </style19> 500 <style21> 501 <FORE> 502 <colour r="233" g="185" b="110" /> 503 </FORE> 504 <BOLD bool="0" /> 505 <NAME> 506 <str><![CDATA[Keyword]]></str> 507 </NAME> 508 </style21> 509 <style23> 510 <FORE> 511 <colour r="78" g="154" b="6" /> 512 </FORE> 513 <BOLD bool="0" /> 514 <NAME> 515 <str><![CDATA[User keyword]]></str> 516 </NAME> 517 </style23> 518 <style27> 519 <FORE> 520 <colour r="185" g="49" b="0" /> 521 </FORE> 522 <BACK> 523 <colour r="30" g="3" b="0" /> 524 </BACK> 525 <NAME> 526 <str><![CDATA[String]]></str> 527 </NAME> 528 </style27> 529 <style28> 530 <FORE> 531 <colour r="185" g="49" b="0" /> 532 </FORE> 533 <BACK> 534 <colour r="30" g="3" b="0" /> 535 </BACK> 536 <NAME> 537 <str><![CDATA[String]]></str> 538 </NAME> 539 </style28> 540 <style31> 541 <FORE> 542 <colour r="245" g="121" b="0" /> 543 </FORE> 544 <NAME> 545 <str><![CDATA[Character]]></str> 546 </NAME> 547 </style31> 548 <style33> 549 <FORE> 550 <colour r="211" g="215" b="207" /> 551 </FORE> 552 <NAME> 553 <str><![CDATA[UUID]]></str> 554 </NAME> 555 </style33> 556 <style34> 557 <FORE> 558 <colour r="78" g="154" b="6" /> 559 </FORE> 560 <NAME> 561 <str><![CDATA[Preprocessor]]></str> 562 </NAME> 563 </style34> 564 <style36> 565 <FORE> 566 <colour r="233" g="185" b="110" /> 567 </FORE> 568 <NAME> 569 <str><![CDATA[Operator]]></str> 570 </NAME> 571 </style36> 572 <style38> 573 <BACK> 574 <colour r="23" g="32" b="24" /> 575 </BACK> 576 <NAME> 577 <str><![CDATA[Selection]]></str> 578 </NAME> 579 </style38> 580 <style39> 581 <BACK> 582 <colour r="24" g="33" b="33" /> 583 </BACK> 584 <NAME> 585 <str><![CDATA[Active line]]></str> 586 </NAME> 587 </style39> 588 <style40> 589 <BACK> 590 <colour r="114" g="159" b="207" /> 591 </BACK> 592 <BOLD bool="0" /> 593 <NAME> 594 <str><![CDATA[Matching brace highlight]]></str> 595 </NAME> 596 </style40> 597 <style41> 598 <FORE> 599 <colour r="238" g="238" b="236" /> 600 </FORE> 601 <BACK> 602 <colour r="164" g="0" b="0" /> 603 </BACK> 604 <BOLD bool="0" /> 605 <NAME> 606 <str><![CDATA[No matching brace highlight]]></str> 607 </NAME> 608 </style41> 609 <NAME> 610 <str><![CDATA[C/C++]]></str> 611 </NAME> 612 <editor> 613 <keywords /> 614 </editor> 615 </cc> 616 </oblivion> 617 <son_of_obsidian> 618 <NAME> 619 <str><![CDATA[son of obsidian]]></str> 620 </NAME> 621 <cc> 622 <style0> 623 <FORE> 624 <colour r="241" g="242" b="243" /> 625 </FORE> 626 <BACK> 627 <colour r="34" g="40" b="42" /> 628 </BACK> 629 <NAME> 630 <str><![CDATA[Default]]></str> 631 </NAME> 632 </style0> 633 <style1> 634 <FORE> 635 <colour r="241" g="242" b="243" /> 636 </FORE> 637 <BACK> 638 <colour r="34" g="40" b="42" /> 639 </BACK> 640 <NAME> 641 <str><![CDATA[Default]]></str> 642 </NAME> 643 </style1> 644 <style5> 645 <FORE> 646 <colour r="102" g="116" b="123" /> 647 </FORE> 648 <NAME> 649 <str><![CDATA[Comment (normal)]]></str> 650 </NAME> 651 </style5> 652 <style6> 653 <FORE> 654 <colour r="102" g="116" b="123" /> 655 </FORE> 656 <NAME> 657 <str><![CDATA[Comment (normal)]]></str> 658 </NAME> 659 </style6> 660 <style7> 661 <FORE> 662 <colour r="102" g="116" b="123" /> 663 </FORE> 664 <NAME> 665 <str><![CDATA[Comment (normal)]]></str> 666 </NAME> 667 </style7> 668 <style8> 669 <FORE> 670 <colour r="102" g="116" b="123" /> 671 </FORE> 672 <NAME> 673 <str><![CDATA[Comment (normal)]]></str> 674 </NAME> 675 </style8> 676 <style11> 677 <FORE> 678 <colour r="153" g="163" b="138" /> 679 </FORE> 680 <BOLD bool="0" /> 681 <NAME> 682 <str><![CDATA[Comment (documentation)]]></str> 683 </NAME> 684 </style11> 685 <style12> 686 <FORE> 687 <colour r="153" g="163" b="138" /> 688 </FORE> 689 <BOLD bool="0" /> 690 <NAME> 691 <str><![CDATA[Comment (documentation)]]></str> 692 </NAME> 693 </style12> 694 <style17> 695 <FORE> 696 <colour r="0" g="0" b="164" /> 697 </FORE> 698 <NAME> 699 <str><![CDATA[Comment keyword error (documentation)]]></str> 700 </NAME> 701 </style17> 702 <style18> 703 <FORE> 704 <colour r="0" g="0" b="164" /> 705 </FORE> 706 <NAME> 707 <str><![CDATA[Comment keyword error (documentation)]]></str> 708 </NAME> 709 </style18> 710 <style19> 711 <FORE> 712 <colour r="255" g="205" b="34" /> 713 </FORE> 714 <NAME> 715 <str><![CDATA[Number]]></str> 716 </NAME> 717 </style19> 718 <style21> 719 <FORE> 720 <colour r="147" g="199" b="99" /> 721 </FORE> 722 <BOLD bool="0" /> 723 <NAME> 724 <str><![CDATA[Keyword]]></str> 725 </NAME> 726 </style21> 727 <style23> 728 <FORE> 729 <colour r="103" g="140" b="177" /> 730 </FORE> 731 <BOLD bool="0" /> 732 <NAME> 733 <str><![CDATA[User keyword]]></str> 734 </NAME> 735 </style23> 736 <style27> 737 <FORE> 738 <colour r="236" g="118" b="0" /> 739 </FORE> 740 <NAME> 741 <str><![CDATA[String]]></str> 742 </NAME> 743 </style27> 744 <style28> 745 <FORE> 746 <colour r="236" g="118" b="0" /> 747 </FORE> 748 <NAME> 749 <str><![CDATA[String]]></str> 750 </NAME> 751 </style28> 752 <style31> 753 <FORE> 754 <colour r="239" g="194" b="16" /> 755 </FORE> 756 <NAME> 757 <str><![CDATA[Character]]></str> 758 </NAME> 759 </style31> 760 <style33> 761 <FORE> 762 <colour r="207" g="215" b="211" /> 763 </FORE> 764 <NAME> 765 <str><![CDATA[UUID]]></str> 766 </NAME> 767 </style33> 768 <style34> 769 <FORE> 770 <colour r="160" g="130" b="189" /> 771 </FORE> 772 <NAME> 773 <str><![CDATA[Preprocessor]]></str> 774 </NAME> 775 </style34> 776 <style36> 777 <FORE> 778 <colour r="232" g="226" b="183" /> 779 </FORE> 780 <NAME> 781 <str><![CDATA[Operator]]></str> 782 </NAME> 783 </style36> 784 <style38> 785 <FORE> 786 <colour r="255" g="255" b="255" /> 787 </FORE> 788 <BACK> 789 <colour r="48" g="58" b="59" /> 790 </BACK> 791 <NAME> 792 <str><![CDATA[Selection]]></str> 793 </NAME> 794 </style38> 795 <style39> 796 <FORE> 797 <colour r="0" g="0" b="0" /> 798 </FORE> 799 <BACK> 800 <colour r="47" g="57" b="60" /> 801 </BACK> 802 <NAME> 803 <str><![CDATA[Active line]]></str> 804 </NAME> 805 </style39> 806 <style40> 807 <BACK> 808 <colour r="80" g="80" b="80" /> 809 </BACK> 810 <NAME> 811 <str><![CDATA[Matching brace highlight]]></str> 812 </NAME> 813 </style40> 814 <style41> 815 <FORE> 816 <colour r="0" g="0" b="160" /> 817 </FORE> 818 <BACK> 819 <colour r="80" g="80" b="80" /> 820 </BACK> 821 <NAME> 822 <str><![CDATA[No matching brace highlight]]></str> 823 </NAME> 824 </style41> 825 <NAME> 826 <str><![CDATA[C/C++]]></str> 827 </NAME> 828 <editor> 829 <keywords /> 830 </editor> 831 </cc> 832 </son_of_obsidian> 833 <solarized_light> 834 <NAME> 835 <str><![CDATA[solarized light]]></str> 836 </NAME> 837 <cc> 838 <style0> 839 <FORE> 840 <colour r="88" g="110" b="117" /> 841 </FORE> 842 <BACK> 843 <colour r="253" g="246" b="227" /> 844 </BACK> 845 <NAME> 846 <str><![CDATA[Default]]></str> 847 </NAME> 848 </style0> 849 <style1> 850 <FORE> 851 <colour r="88" g="110" b="117" /> 852 </FORE> 853 <BACK> 854 <colour r="253" g="246" b="227" /> 855 </BACK> 856 <NAME> 857 <str><![CDATA[Default]]></str> 858 </NAME> 859 </style1> 860 <style5> 861 <FORE> 862 <colour r="42" g="161" b="152" /> 863 </FORE> 864 <NAME> 865 <str><![CDATA[Comment (normal)]]></str> 866 </NAME> 867 </style5> 868 <style6> 869 <FORE> 870 <colour r="42" g="161" b="152" /> 871 </FORE> 872 <NAME> 873 <str><![CDATA[Comment (normal)]]></str> 874 </NAME> 875 </style6> 876 <style7> 877 <FORE> 878 <colour r="42" g="161" b="152" /> 879 </FORE> 880 <NAME> 881 <str><![CDATA[Comment (normal)]]></str> 882 </NAME> 883 </style7> 884 <style8> 885 <FORE> 886 <colour r="42" g="161" b="152" /> 887 </FORE> 888 <NAME> 889 <str><![CDATA[Comment (normal)]]></str> 890 </NAME> 891 </style8> 892 <style9> 893 <FORE> 894 <colour r="42" g="161" b="152" /> 895 </FORE> 896 <NAME> 897 <str><![CDATA[Comment line (normal)]]></str> 898 </NAME> 899 </style9> 900 <style10> 901 <FORE> 902 <colour r="42" g="161" b="152" /> 903 </FORE> 904 <NAME> 905 <str><![CDATA[Comment line (normal)]]></str> 906 </NAME> 907 </style10> 908 <style11> 909 <FORE> 910 <colour r="38" g="139" b="210" /> 911 </FORE> 912 <BOLD bool="0" /> 913 <NAME> 914 <str><![CDATA[Comment (documentation)]]></str> 915 </NAME> 916 </style11> 917 <style12> 918 <FORE> 919 <colour r="38" g="139" b="210" /> 920 </FORE> 921 <BOLD bool="0" /> 922 <NAME> 923 <str><![CDATA[Comment (documentation)]]></str> 924 </NAME> 925 </style12> 926 <style13> 927 <BOLD bool="0" /> 928 <NAME> 929 <str><![CDATA[Comment line (documentation)]]></str> 930 </NAME> 931 </style13> 932 <style14> 933 <BOLD bool="0" /> 934 <NAME> 935 <str><![CDATA[Comment line (documentation)]]></str> 936 </NAME> 937 </style14> 938 <style15> 939 <FORE> 940 <colour r="133" g="153" b="0" /> 941 </FORE> 942 <BOLD bool="1" /> 943 <NAME> 944 <str><![CDATA[Comment keyword (documentation)]]></str> 945 </NAME> 946 </style15> 947 <style16> 948 <FORE> 949 <colour r="133" g="153" b="0" /> 950 </FORE> 951 <BOLD bool="1" /> 952 <NAME> 953 <str><![CDATA[Comment keyword (documentation)]]></str> 954 </NAME> 955 </style16> 956 <style17> 957 <FORE> 958 <colour r="220" g="50" b="47" /> 959 </FORE> 960 <BOLD bool="1" /> 961 <NAME> 962 <str><![CDATA[Comment keyword error (documentation)]]></str> 963 </NAME> 964 </style17> 965 <style18> 966 <FORE> 967 <colour r="220" g="50" b="47" /> 968 </FORE> 969 <BOLD bool="1" /> 970 <NAME> 971 <str><![CDATA[Comment keyword error (documentation)]]></str> 972 </NAME> 973 </style18> 974 <style19> 975 <FORE> 976 <colour r="42" g="161" b="252" /> 977 </FORE> 978 <NAME> 979 <str><![CDATA[Number]]></str> 980 </NAME> 981 </style19> 982 <style21> 983 <FORE> 984 <colour r="133" g="153" b="0" /> 985 </FORE> 986 <NAME> 987 <str><![CDATA[Keyword]]></str> 988 </NAME> 989 </style21> 990 <style23> 991 <FORE> 992 <colour r="88" g="110" b="117" /> 993 </FORE> 994 <NAME> 995 <str><![CDATA[User keyword]]></str> 996 </NAME> 997 </style23> 998 <style27> 999 <FORE> 1000 <colour r="42" g="161" b="152" /> 1001 </FORE> 1002 <NAME> 1003 <str><![CDATA[String]]></str> 1004 </NAME> 1005 </style27> 1006 <style28> 1007 <FORE> 1008 <colour r="42" g="161" b="152" /> 1009 </FORE> 1010 <NAME> 1011 <str><![CDATA[String]]></str> 1012 </NAME> 1013 </style28> 1014 <style31> 1015 <FORE> 1016 <colour r="42" g="161" b="152" /> 1017 </FORE> 1018 <NAME> 1019 <str><![CDATA[Character]]></str> 1020 </NAME> 1021 </style31> 1022 <style34> 1023 <FORE> 1024 <colour r="203" g="75" b="22" /> 1025 </FORE> 1026 <NAME> 1027 <str><![CDATA[Preprocessor]]></str> 1028 </NAME> 1029 </style34> 1030 <style36> 1031 <FORE> 1032 <colour r="181" g="137" b="0" /> 1033 </FORE> 1034 <NAME> 1035 <str><![CDATA[Operator]]></str> 1036 </NAME> 1037 </style36> 1038 <NAME> 1039 <str><![CDATA[C/C++]]></str> 1040 </NAME> 1041 <editor> 1042 <keywords /> 1043 </editor> 1044 </cc> 1045 </solarized_light> 1046 <solarized_dark> 1047 <NAME> 1048 <str><![CDATA[solarized dark]]></str> 1049 </NAME> 1050 <cc> 1051 <style0> 1052 <FORE> 1053 <colour r="147" g="161" b="161" /> 1054 </FORE> 1055 <BACK> 1056 <colour r="0" g="43" b="54" /> 1057 </BACK> 1058 <NAME> 1059 <str><![CDATA[Default]]></str> 1060 </NAME> 1061 </style0> 1062 <style1> 1063 <FORE> 1064 <colour r="147" g="161" b="161" /> 1065 </FORE> 1066 <BACK> 1067 <colour r="0" g="43" b="54" /> 1068 </BACK> 1069 <NAME> 1070 <str><![CDATA[Default]]></str> 1071 </NAME> 1072 </style1> 1073 <style5> 1074 <FORE> 1075 <colour r="42" g="161" b="152" /> 1076 </FORE> 1077 <NAME> 1078 <str><![CDATA[Comment (normal)]]></str> 1079 </NAME> 1080 </style5> 1081 <style6> 1082 <FORE> 1083 <colour r="42" g="161" b="152" /> 1084 </FORE> 1085 <NAME> 1086 <str><![CDATA[Comment (normal)]]></str> 1087 </NAME> 1088 </style6> 1089 <style7> 1090 <FORE> 1091 <colour r="42" g="161" b="152" /> 1092 </FORE> 1093 <NAME> 1094 <str><![CDATA[Comment (normal)]]></str> 1095 </NAME> 1096 </style7> 1097 <style8> 1098 <FORE> 1099 <colour r="42" g="161" b="152" /> 1100 </FORE> 1101 <NAME> 1102 <str><![CDATA[Comment (normal)]]></str> 1103 </NAME> 1104 </style8> 1105 <style9> 1106 <FORE> 1107 <colour r="42" g="161" b="152" /> 1108 </FORE> 1109 <NAME> 1110 <str><![CDATA[Comment line (normal)]]></str> 1111 </NAME> 1112 </style9> 1113 <style10> 1114 <FORE> 1115 <colour r="42" g="161" b="152" /> 1116 </FORE> 1117 <NAME> 1118 <str><![CDATA[Comment line (normal)]]></str> 1119 </NAME> 1120 </style10> 1121 <style11> 1122 <FORE> 1123 <colour r="38" g="139" b="210" /> 1124 </FORE> 1125 <BOLD bool="0" /> 1126 <NAME> 1127 <str><![CDATA[Comment (documentation)]]></str> 1128 </NAME> 1129 </style11> 1130 <style12> 1131 <FORE> 1132 <colour r="38" g="139" b="210" /> 1133 </FORE> 1134 <BOLD bool="0" /> 1135 <NAME> 1136 <str><![CDATA[Comment (documentation)]]></str> 1137 </NAME> 1138 </style12> 1139 <style13> 1140 <BOLD bool="0" /> 1141 <NAME> 1142 <str><![CDATA[Comment line (documentation)]]></str> 1143 </NAME> 1144 </style13> 1145 <style14> 1146 <BOLD bool="0" /> 1147 <NAME> 1148 <str><![CDATA[Comment line (documentation)]]></str> 1149 </NAME> 1150 </style14> 1151 <style15> 1152 <FORE> 1153 <colour r="133" g="153" b="0" /> 1154 </FORE> 1155 <BOLD bool="1" /> 1156 <NAME> 1157 <str><![CDATA[Comment keyword (documentation)]]></str> 1158 </NAME> 1159 </style15> 1160 <style16> 1161 <FORE> 1162 <colour r="133" g="153" b="0" /> 1163 </FORE> 1164 <BOLD bool="1" /> 1165 <NAME> 1166 <str><![CDATA[Comment keyword (documentation)]]></str> 1167 </NAME> 1168 </style16> 1169 <style17> 1170 <FORE> 1171 <colour r="220" g="50" b="47" /> 1172 </FORE> 1173 <BOLD bool="1" /> 1174 <NAME> 1175 <str><![CDATA[Comment keyword error (documentation)]]></str> 1176 </NAME> 1177 </style17> 1178 <style18> 1179 <FORE> 1180 <colour r="220" g="50" b="47" /> 1181 </FORE> 1182 <BOLD bool="1" /> 1183 <NAME> 1184 <str><![CDATA[Comment keyword error (documentation)]]></str> 1185 </NAME> 1186 </style18> 1187 <style19> 1188 <FORE> 1189 <colour r="42" g="161" b="252" /> 1190 </FORE> 1191 <NAME> 1192 <str><![CDATA[Number]]></str> 1193 </NAME> 1194 </style19> 1195 <style21> 1196 <FORE> 1197 <colour r="133" g="153" b="0" /> 1198 </FORE> 1199 <NAME> 1200 <str><![CDATA[Keyword]]></str> 1201 </NAME> 1202 </style21> 1203 <style23> 1204 <FORE> 1205 <colour r="88" g="110" b="117" /> 1206 </FORE> 1207 <NAME> 1208 <str><![CDATA[User keyword]]></str> 1209 </NAME> 1210 </style23> 1211 <style27> 1212 <FORE> 1213 <colour r="42" g="161" b="152" /> 1214 </FORE> 1215 <NAME> 1216 <str><![CDATA[String]]></str> 1217 </NAME> 1218 </style27> 1219 <style28> 1220 <FORE> 1221 <colour r="42" g="161" b="152" /> 1222 </FORE> 1223 <NAME> 1224 <str><![CDATA[String]]></str> 1225 </NAME> 1226 </style28> 1227 <style31> 1228 <FORE> 1229 <colour r="42" g="161" b="152" /> 1230 </FORE> 1231 <NAME> 1232 <str><![CDATA[Character]]></str> 1233 </NAME> 1234 </style31> 1235 <style34> 1236 <FORE> 1237 <colour r="203" g="75" b="22" /> 1238 </FORE> 1239 <NAME> 1240 <str><![CDATA[Preprocessor]]></str> 1241 </NAME> 1242 </style34> 1243 <style36> 1244 <FORE> 1245 <colour r="181" g="137" b="0" /> 1246 </FORE> 1247 <NAME> 1248 <str><![CDATA[Operator]]></str> 1249 </NAME> 1250 </style36> 1251 <style39> 1252 <BACK> 1253 <colour r="7" g="54" b="66" /> 1254 </BACK> 1255 <NAME> 1256 <str><![CDATA[Active line]]></str> 1257 </NAME> 1258 </style39> 1259 <NAME bool="1"> 1260 <str><![CDATA[C/C++]]></str> 1261 </NAME> 1262 <editor> 1263 <keywords /> 1264 </editor> 1265 </cc> 1266 </solarized_dark> 1267 <modnokai_coffee> 1268 <NAME> 1269 <str><![CDATA[modnokai coffee]]></str> 1270 </NAME> 1271 <cc> 1272 <style0> 1273 <FORE> 1274 <colour r="255" g="255" b="255" /> 1275 </FORE> 1276 <BACK> 1277 <colour r="39" g="40" b="34" /> 1278 </BACK> 1279 <NAME> 1280 <str><![CDATA[Default]]></str> 1281 </NAME> 1282 </style0> 1283 <style1> 1284 <FORE> 1285 <colour r="255" g="255" b="255" /> 1286 </FORE> 1287 <BACK> 1288 <colour r="39" g="40" b="34" /> 1289 </BACK> 1290 <NAME> 1291 <str><![CDATA[Default]]></str> 1292 </NAME> 1293 </style1> 1294 <style5> 1295 <FORE> 1296 <colour r="117" g="113" b="94" /> 1297 </FORE> 1298 <ITALICS bool="1" /> 1299 <NAME> 1300 <str><![CDATA[Comment (normal)]]></str> 1301 </NAME> 1302 </style5> 1303 <style6> 1304 <FORE> 1305 <colour r="117" g="113" b="94" /> 1306 </FORE> 1307 <ITALICS bool="1" /> 1308 <NAME> 1309 <str><![CDATA[Comment (normal)]]></str> 1310 </NAME> 1311 </style6> 1312 <style7> 1313 <FORE> 1314 <colour r="117" g="113" b="94" /> 1315 </FORE> 1316 <ITALICS bool="1" /> 1317 <NAME> 1318 <str><![CDATA[Comment (normal)]]></str> 1319 </NAME> 1320 </style7> 1321 <style8> 1322 <FORE> 1323 <colour r="117" g="113" b="94" /> 1324 </FORE> 1325 <ITALICS bool="1" /> 1326 <NAME> 1327 <str><![CDATA[Comment (normal)]]></str> 1328 </NAME> 1329 </style8> 1330 <style9> 1331 <FORE> 1332 <colour r="117" g="113" b="94" /> 1333 </FORE> 1334 <ITALICS bool="1" /> 1335 <NAME> 1336 <str><![CDATA[Comment line (normal)]]></str> 1337 </NAME> 1338 </style9> 1339 <style10> 1340 <FORE> 1341 <colour r="117" g="113" b="94" /> 1342 </FORE> 1343 <ITALICS bool="1" /> 1344 <NAME> 1345 <str><![CDATA[Comment line (normal)]]></str> 1346 </NAME> 1347 </style10> 1348 <style11> 1349 <FORE> 1350 <colour r="117" g="113" b="94" /> 1351 </FORE> 1352 <ITALICS bool="1" /> 1353 <NAME> 1354 <str><![CDATA[Comment (documentation)]]></str> 1355 </NAME> 1356 </style11> 1357 <style12> 1358 <FORE> 1359 <colour r="117" g="113" b="94" /> 1360 </FORE> 1361 <ITALICS bool="1" /> 1362 <NAME> 1363 <str><![CDATA[Comment (documentation)]]></str> 1364 </NAME> 1365 </style12> 1366 <style13> 1367 <FORE> 1368 <colour r="117" g="113" b="94" /> 1369 </FORE> 1370 <ITALICS bool="1" /> 1371 <NAME> 1372 <str><![CDATA[Comment line (documentation)]]></str> 1373 </NAME> 1374 </style13> 1375 <style14> 1376 <FORE> 1377 <colour r="117" g="113" b="94" /> 1378 </FORE> 1379 <ITALICS bool="1" /> 1380 <NAME> 1381 <str><![CDATA[Comment line (documentation)]]></str> 1382 </NAME> 1383 </style14> 1384 <style15> 1385 <FORE> 1386 <colour r="128" g="255" b="128" /> 1387 </FORE> 1388 <NAME> 1389 <str><![CDATA[Comment keyword (documentation)]]></str> 1390 </NAME> 1391 </style15> 1392 <style16> 1393 <FORE> 1394 <colour r="128" g="255" b="128" /> 1395 </FORE> 1396 <NAME> 1397 <str><![CDATA[Comment keyword (documentation)]]></str> 1398 </NAME> 1399 </style16> 1400 <style17> 1401 <FORE> 1402 <colour r="255" g="128" b="128" /> 1403 </FORE> 1404 <NAME> 1405 <str><![CDATA[Comment keyword error (documentation)]]></str> 1406 </NAME> 1407 </style17> 1408 <style18> 1409 <FORE> 1410 <colour r="255" g="128" b="128" /> 1411 </FORE> 1412 <NAME> 1413 <str><![CDATA[Comment keyword error (documentation)]]></str> 1414 </NAME> 1415 </style18> 1416 <style19> 1417 <FORE> 1418 <colour r="255" g="128" b="128" /> 1419 </FORE> 1420 <NAME> 1421 <str><![CDATA[Number]]></str> 1422 </NAME> 1423 </style19> 1424 <style21> 1425 <FORE> 1426 <colour r="38" g="249" b="173" /> 1427 </FORE> 1428 <BOLD bool="0" /> 1429 <ITALICS bool="1" /> 1430 <NAME> 1431 <str><![CDATA[Keyword]]></str> 1432 </NAME> 1433 </style21> 1434 <style23> 1435 <FORE> 1436 <colour r="249" g="38" b="114" /> 1437 </FORE> 1438 <BOLD bool="0" /> 1439 <ITALICS bool="1" /> 1440 <NAME> 1441 <str><![CDATA[User keyword]]></str> 1442 </NAME> 1443 </style23> 1444 <style27> 1445 <FORE> 1446 <colour r="224" g="160" b="0" /> 1447 </FORE> 1448 <NAME> 1449 <str><![CDATA[String]]></str> 1450 </NAME> 1451 </style27> 1452 <style28> 1453 <FORE> 1454 <colour r="224" g="160" b="0" /> 1455 </FORE> 1456 <NAME> 1457 <str><![CDATA[String]]></str> 1458 </NAME> 1459 </style28> 1460 <style34> 1461 <FORE> 1462 <colour r="249" g="38" b="114" /> 1463 </FORE> 1464 <NAME> 1465 <str><![CDATA[Preprocessor]]></str> 1466 </NAME> 1467 </style34> 1468 <style36> 1469 <FORE> 1470 <colour r="166" g="226" b="46" /> 1471 </FORE> 1472 <NAME> 1473 <str><![CDATA[Operator]]></str> 1474 </NAME> 1475 </style36> 1476 <style38> 1477 <BACK> 1478 <colour r="73" g="72" b="62" /> 1479 </BACK> 1480 <NAME> 1481 <str><![CDATA[Selection]]></str> 1482 </NAME> 1483 </style38> 1484 <style39> 1485 <BACK> 1486 <colour r="62" g="61" b="50" /> 1487 </BACK> 1488 <NAME> 1489 <str><![CDATA[Active line]]></str> 1490 </NAME> 1491 </style39> 1492 <NAME> 1493 <str><![CDATA[C/C++]]></str> 1494 </NAME> 1495 <editor> 1496 <keywords /> 1497 </editor> 1498 </cc> 1499 </modnokai_coffee> 1500 <sublime> 1501 <NAME> 1502 <str><![CDATA[sublime]]></str> 1503 </NAME> 1504 <cc> 1505 <style0> 1506 <FORE> 1507 <colour r="255" g="255" b="255" /> 1508 </FORE> 1509 <BACK> 1510 <colour r="40" g="40" b="40" /> 1511 </BACK> 1512 <NAME> 1513 <str><![CDATA[Default]]></str> 1514 </NAME> 1515 </style0> 1516 <style1> 1517 <FORE> 1518 <colour r="255" g="255" b="255" /> 1519 </FORE> 1520 <BACK> 1521 <colour r="40" g="40" b="40" /> 1522 </BACK> 1523 <NAME> 1524 <str><![CDATA[Default]]></str> 1525 </NAME> 1526 </style1> 1527 <style5> 1528 <FORE> 1529 <colour r="106" g="102" b="85" /> 1530 </FORE> 1531 <NAME> 1532 <str><![CDATA[Comment (normal)]]></str> 1533 </NAME> 1534 </style5> 1535 <style6> 1536 <FORE> 1537 <colour r="106" g="102" b="85" /> 1538 </FORE> 1539 <NAME> 1540 <str><![CDATA[Comment (normal)]]></str> 1541 </NAME> 1542 </style6> 1543 <style7> 1544 <FORE> 1545 <colour r="106" g="102" b="85" /> 1546 </FORE> 1547 <NAME> 1548 <str><![CDATA[Comment (normal)]]></str> 1549 </NAME> 1550 </style7> 1551 <style8> 1552 <FORE> 1553 <colour r="106" g="102" b="85" /> 1554 </FORE> 1555 <NAME> 1556 <str><![CDATA[Comment (normal)]]></str> 1557 </NAME> 1558 </style8> 1559 <style9> 1560 <FORE> 1561 <colour r="106" g="102" b="85" /> 1562 </FORE> 1563 <NAME> 1564 <str><![CDATA[Comment line (normal)]]></str> 1565 </NAME> 1566 </style9> 1567 <style10> 1568 <FORE> 1569 <colour r="106" g="102" b="85" /> 1570 </FORE> 1571 <NAME> 1572 <str><![CDATA[Comment line (normal)]]></str> 1573 </NAME> 1574 </style10> 1575 <style11> 1576 <FORE> 1577 <colour r="58" g="81" b="133" /> 1578 </FORE> 1579 <BOLD bool="0" /> 1580 <NAME> 1581 <str><![CDATA[Comment (documentation)]]></str> 1582 </NAME> 1583 </style11> 1584 <style12> 1585 <FORE> 1586 <colour r="58" g="81" b="133" /> 1587 </FORE> 1588 <BOLD bool="0" /> 1589 <NAME> 1590 <str><![CDATA[Comment (documentation)]]></str> 1591 </NAME> 1592 </style12> 1593 <style19> 1594 <FORE> 1595 <colour r="150" g="110" b="220" /> 1596 </FORE> 1597 <NAME> 1598 <str><![CDATA[Number]]></str> 1599 </NAME> 1600 </style19> 1601 <style21> 1602 <FORE> 1603 <colour r="100" g="210" b="230" /> 1604 </FORE> 1605 <BOLD bool="0" /> 1606 <NAME> 1607 <str><![CDATA[Keyword]]></str> 1608 </NAME> 1609 </style21> 1610 <style23> 1611 <FORE> 1612 <colour r="156" g="242" b="132" /> 1613 </FORE> 1614 <BOLD bool="0" /> 1615 <NAME> 1616 <str><![CDATA[User keyword]]></str> 1617 </NAME> 1618 </style23> 1619 <style27> 1620 <FORE> 1621 <colour r="230" g="220" b="110" /> 1622 </FORE> 1623 <NAME> 1624 <str><![CDATA[String]]></str> 1625 </NAME> 1626 </style27> 1627 <style28> 1628 <FORE> 1629 <colour r="230" g="220" b="110" /> 1630 </FORE> 1631 <NAME> 1632 <str><![CDATA[String]]></str> 1633 </NAME> 1634 </style28> 1635 <style36> 1636 <FORE> 1637 <colour r="255" g="0" b="127" /> 1638 </FORE> 1639 <NAME> 1640 <str><![CDATA[Operator]]></str> 1641 </NAME> 1642 </style36> 1643 <style38> 1644 <BACK> 1645 <colour r="75" g="72" b="65" /> 1646 </BACK> 1647 <NAME> 1648 <str><![CDATA[Selection]]></str> 1649 </NAME> 1650 </style38> 1651 <style39> 1652 <BACK> 1653 <colour r="91" g="90" b="78" /> 1654 </BACK> 1655 <NAME> 1656 <str><![CDATA[Active line]]></str> 1657 </NAME> 1658 </style39> 1659 <NAME> 1660 <str><![CDATA[C/C++]]></str> 1661 </NAME> 1662 </cc> 1663 </sublime> 1664 <vim> 1665 <NAME> 1666 <str><![CDATA[vim]]></str> 1667 </NAME> 1668 <cc> 1669 <style0> 1670 <FORE> 1671 <colour r="192" g="192" b="192" /> 1672 </FORE> 1673 <BACK> 1674 <colour r="0" g="0" b="0" /> 1675 </BACK> 1676 <NAME> 1677 <str><![CDATA[Default]]></str> 1678 </NAME> 1679 </style0> 1680 <style1> 1681 <FORE> 1682 <colour r="192" g="192" b="192" /> 1683 </FORE> 1684 <BACK> 1685 <colour r="0" g="0" b="0" /> 1686 </BACK> 1687 <NAME> 1688 <str><![CDATA[Default]]></str> 1689 </NAME> 1690 </style1> 1691 <style5> 1692 <FORE> 1693 <colour r="128" g="255" b="255" /> 1694 </FORE> 1695 <NAME> 1696 <str><![CDATA[Comment (normal)]]></str> 1697 </NAME> 1698 </style5> 1699 <style6> 1700 <FORE> 1701 <colour r="128" g="255" b="255" /> 1702 </FORE> 1703 <NAME> 1704 <str><![CDATA[Comment (normal)]]></str> 1705 </NAME> 1706 </style6> 1707 <style7> 1708 <FORE> 1709 <colour r="128" g="255" b="255" /> 1710 </FORE> 1711 <NAME> 1712 <str><![CDATA[Comment (normal)]]></str> 1713 </NAME> 1714 </style7> 1715 <style8> 1716 <FORE> 1717 <colour r="128" g="255" b="255" /> 1718 </FORE> 1719 <NAME> 1720 <str><![CDATA[Comment (normal)]]></str> 1721 </NAME> 1722 </style8> 1723 <style9> 1724 <FORE> 1725 <colour r="0" g="255" b="255" /> 1726 </FORE> 1727 <NAME> 1728 <str><![CDATA[Comment line (normal)]]></str> 1729 </NAME> 1730 </style9> 1731 <style10> 1732 <FORE> 1733 <colour r="0" g="255" b="255" /> 1734 </FORE> 1735 <NAME> 1736 <str><![CDATA[Comment line (normal)]]></str> 1737 </NAME> 1738 </style10> 1739 <style11> 1740 <BOLD bool="0" /> 1741 <NAME> 1742 <str><![CDATA[Comment (documentation)]]></str> 1743 </NAME> 1744 </style11> 1745 <style12> 1746 <BOLD bool="0" /> 1747 <NAME> 1748 <str><![CDATA[Comment (documentation)]]></str> 1749 </NAME> 1750 </style12> 1751 <style19> 1752 <FORE> 1753 <colour r="255" g="0" b="255" /> 1754 </FORE> 1755 <NAME> 1756 <str><![CDATA[Number]]></str> 1757 </NAME> 1758 </style19> 1759 <style21> 1760 <FORE> 1761 <colour r="0" g="255" b="0" /> 1762 </FORE> 1763 <BOLD bool="0" /> 1764 <NAME> 1765 <str><![CDATA[Keyword]]></str> 1766 </NAME> 1767 </style21> 1768 <style23> 1769 <FORE> 1770 <colour r="255" g="255" b="0" /> 1771 </FORE> 1772 <BOLD bool="0" /> 1773 <NAME> 1774 <str><![CDATA[User keyword]]></str> 1775 </NAME> 1776 </style23> 1777 <style27> 1778 <FORE> 1779 <colour r="255" g="0" b="255" /> 1780 </FORE> 1781 <NAME> 1782 <str><![CDATA[String]]></str> 1783 </NAME> 1784 </style27> 1785 <style28> 1786 <FORE> 1787 <colour r="255" g="0" b="255" /> 1788 </FORE> 1789 <NAME> 1790 <str><![CDATA[String]]></str> 1791 </NAME> 1792 </style28> 1793 <style31> 1794 <FORE> 1795 <colour r="255" g="0" b="0" /> 1796 </FORE> 1797 <NAME> 1798 <str><![CDATA[Character]]></str> 1799 </NAME> 1800 </style31> 1801 <style34> 1802 <FORE> 1803 <colour r="0" g="0" b="255" /> 1804 </FORE> 1805 <NAME> 1806 <str><![CDATA[Preprocessor]]></str> 1807 </NAME> 1808 </style34> 1809 <style36> 1810 <FORE> 1811 <colour r="255" g="255" b="255" /> 1812 </FORE> 1813 <NAME> 1814 <str><![CDATA[Operator]]></str> 1815 </NAME> 1816 </style36> 1817 <style38> 1818 <BACK> 1819 <colour r="128" g="128" b="128" /> 1820 </BACK> 1821 <NAME> 1822 <str><![CDATA[Selection]]></str> 1823 </NAME> 1824 </style38> 1825 <style39> 1826 <BACK> 1827 <colour r="64" g="128" b="128" /> 1828 </BACK> 1829 <NAME> 1830 <str><![CDATA[Active line]]></str> 1831 </NAME> 1832 </style39> 1833 <NAME> 1834 <str><![CDATA[C/C++]]></str> 1835 </NAME> 1836 </cc> 1837 </vim> 1838 <slush_n_poppies> 1839 <NAME> 1840 <str><![CDATA[slush n poppies]]></str> 1841 </NAME> 1842 <cc> 1843 <style0> 1844 <BACK> 1845 <colour r="241" g="241" b="241" /> 1846 </BACK> 1847 <NAME> 1848 <str><![CDATA[Default]]></str> 1849 </NAME> 1850 </style0> 1851 <style1> 1852 <BACK> 1853 <colour r="241" g="241" b="241" /> 1854 </BACK> 1855 <NAME> 1856 <str><![CDATA[Default]]></str> 1857 </NAME> 1858 </style1> 1859 <style5> 1860 <FORE> 1861 <colour r="64" g="96" b="64" /> 1862 </FORE> 1863 <NAME> 1864 <str><![CDATA[Comment (normal)]]></str> 1865 </NAME> 1866 </style5> 1867 <style6> 1868 <FORE> 1869 <colour r="64" g="96" b="64" /> 1870 </FORE> 1871 <NAME> 1872 <str><![CDATA[Comment (normal)]]></str> 1873 </NAME> 1874 </style6> 1875 <style7> 1876 <FORE> 1877 <colour r="64" g="96" b="64" /> 1878 </FORE> 1879 <NAME> 1880 <str><![CDATA[Comment (normal)]]></str> 1881 </NAME> 1882 </style7> 1883 <style8> 1884 <FORE> 1885 <colour r="64" g="96" b="64" /> 1886 </FORE> 1887 <NAME> 1888 <str><![CDATA[Comment (normal)]]></str> 1889 </NAME> 1890 </style8> 1891 <style11> 1892 <FORE> 1893 <colour r="64" g="96" b="64" /> 1894 </FORE> 1895 <BOLD bool="0" /> 1896 <NAME> 1897 <str><![CDATA[Comment (documentation)]]></str> 1898 </NAME> 1899 </style11> 1900 <style12> 1901 <FORE> 1902 <colour r="64" g="96" b="64" /> 1903 </FORE> 1904 <BOLD bool="0" /> 1905 <NAME> 1906 <str><![CDATA[Comment (documentation)]]></str> 1907 </NAME> 1908 </style12> 1909 <style19> 1910 <FORE> 1911 <colour r="0" g="128" b="160" /> 1912 </FORE> 1913 <NAME> 1914 <str><![CDATA[Number]]></str> 1915 </NAME> 1916 </style19> 1917 <style21> 1918 <FORE> 1919 <colour r="32" g="96" b="160" /> 1920 </FORE> 1921 <BOLD bool="0" /> 1922 <NAME> 1923 <str><![CDATA[Keyword]]></str> 1924 </NAME> 1925 </style21> 1926 <style23> 1927 <FORE> 1928 <colour r="32" g="96" b="160" /> 1929 </FORE> 1930 <BOLD bool="0" /> 1931 <NAME> 1932 <str><![CDATA[User keyword]]></str> 1933 </NAME> 1934 </style23> 1935 <style27> 1936 <FORE> 1937 <colour r="192" g="48" b="48" /> 1938 </FORE> 1939 <NAME> 1940 <str><![CDATA[String]]></str> 1941 </NAME> 1942 </style27> 1943 <style28> 1944 <FORE> 1945 <colour r="192" g="48" b="48" /> 1946 </FORE> 1947 <NAME> 1948 <str><![CDATA[String]]></str> 1949 </NAME> 1950 </style28> 1951 <style31> 1952 <FORE> 1953 <colour r="128" g="0" b="0" /> 1954 </FORE> 1955 <NAME> 1956 <str><![CDATA[Character]]></str> 1957 </NAME> 1958 </style31> 1959 <style36> 1960 <FORE> 1961 <colour r="97" g="97" b="97" /> 1962 </FORE> 1963 <NAME> 1964 <str><![CDATA[Operator]]></str> 1965 </NAME> 1966 </style36> 1967 <style38> 1968 <BACK> 1969 <colour r="176" g="176" b="255" /> 1970 </BACK> 1971 <NAME> 1972 <str><![CDATA[Selection]]></str> 1973 </NAME> 1974 </style38> 1975 <style40> 1976 <BACK> 1977 <colour r="140" g="140" b="255" /> 1978 </BACK> 1979 <BOLD bool="0" /> 1980 <UNDERLINED bool="1" /> 1981 <NAME> 1982 <str><![CDATA[Matching brace highlight]]></str> 1983 </NAME> 1984 </style40> 1985 <style41> 1986 <BACK> 1987 <colour r="255" g="106" b="106" /> 1988 </BACK> 1989 <BOLD bool="0" /> 1990 <NAME> 1991 <str><![CDATA[No matching brace highlight]]></str> 1992 </NAME> 1993 </style41> 1994 <NAME> 1995 <str><![CDATA[C/C++]]></str> 1996 </NAME> 1997 </cc> 1998 </slush_n_poppies> 1999 <espresso_libre> 2000 <NAME> 2001 <str><![CDATA[espresso libre]]></str> 2002 </NAME> 2003 <cc> 2004 <style0> 2005 <FORE> 2006 <colour r="132" g="112" b="89" /> 2007 </FORE> 2008 <BACK> 2009 <colour r="42" g="33" b="28" /> 2010 </BACK> 2011 <NAME> 2012 <str><![CDATA[Default]]></str> 2013 </NAME> 2014 </style0> 2015 <style1> 2016 <FORE> 2017 <colour r="132" g="112" b="89" /> 2018 </FORE> 2019 <BACK> 2020 <colour r="42" g="33" b="28" /> 2021 </BACK> 2022 <NAME> 2023 <str><![CDATA[Default]]></str> 2024 </NAME> 2025 </style1> 2026 <style5> 2027 <FORE> 2028 <colour r="0" g="102" b="255" /> 2029 </FORE> 2030 <ITALICS bool="1" /> 2031 <NAME> 2032 <str><![CDATA[Comment (normal)]]></str> 2033 </NAME> 2034 </style5> 2035 <style6> 2036 <FORE> 2037 <colour r="0" g="102" b="255" /> 2038 </FORE> 2039 <ITALICS bool="1" /> 2040 <NAME> 2041 <str><![CDATA[Comment (normal)]]></str> 2042 </NAME> 2043 </style6> 2044 <style7> 2045 <FORE> 2046 <colour r="0" g="102" b="255" /> 2047 </FORE> 2048 <ITALICS bool="1" /> 2049 <NAME> 2050 <str><![CDATA[Comment (normal)]]></str> 2051 </NAME> 2052 </style7> 2053 <style8> 2054 <FORE> 2055 <colour r="0" g="102" b="255" /> 2056 </FORE> 2057 <ITALICS bool="1" /> 2058 <NAME> 2059 <str><![CDATA[Comment (normal)]]></str> 2060 </NAME> 2061 </style8> 2062 <style19> 2063 <FORE> 2064 <colour r="68" g="170" b="67" /> 2065 </FORE> 2066 <NAME> 2067 <str><![CDATA[Number]]></str> 2068 </NAME> 2069 </style19> 2070 <style21> 2071 <FORE> 2072 <colour r="67" g="168" b="237" /> 2073 </FORE> 2074 <BOLD bool="0" /> 2075 <NAME> 2076 <str><![CDATA[Keyword]]></str> 2077 </NAME> 2078 </style21> 2079 <style27> 2080 <FORE> 2081 <colour r="4" g="155" b="10" /> 2082 </FORE> 2083 <NAME> 2084 <str><![CDATA[String]]></str> 2085 </NAME> 2086 </style27> 2087 <style28> 2088 <FORE> 2089 <colour r="4" g="155" b="10" /> 2090 </FORE> 2091 <NAME> 2092 <str><![CDATA[String]]></str> 2093 </NAME> 2094 </style28> 2095 <style31> 2096 <FORE> 2097 <colour r="47" g="228" b="32" /> 2098 </FORE> 2099 <NAME> 2100 <str><![CDATA[Character]]></str> 2101 </NAME> 2102 </style31> 2103 <style34> 2104 <FORE> 2105 <colour r="154" g="255" b="135" /> 2106 </FORE> 2107 <NAME> 2108 <str><![CDATA[Preprocessor]]></str> 2109 </NAME> 2110 </style34> 2111 <style36> 2112 <FORE> 2113 <colour r="109" g="121" b="222" /> 2114 </FORE> 2115 <NAME> 2116 <str><![CDATA[Operator]]></str> 2117 </NAME> 2118 </style36> 2119 <style40> 2120 <FORE> 2121 <colour r="192" g="192" b="192" /> 2122 </FORE> 2123 <BACK> 2124 <colour r="141" g="119" b="95" /> 2125 </BACK> 2126 <BOLD bool="0" /> 2127 <UNDERLINED bool="1" /> 2128 <NAME> 2129 <str><![CDATA[Matching brace highlight]]></str> 2130 </NAME> 2131 </style40> 2132 <NAME> 2133 <str><![CDATA[C/C++]]></str> 2134 </NAME> 2135 <editor> 2136 <keywords /> 2137 </editor> 2138 </cc> 2139 </espresso_libre> 2140 <modnokai_night_shift> 2141 <NAME> 2142 <str><![CDATA[modnokai night shift]]></str> 2143 </NAME> 2144 <cc> 2145 <style0> 2146 <FORE> 2147 <colour r="255" g="255" b="255" /> 2148 </FORE> 2149 <BACK> 2150 <colour r="34" g="40" b="42" /> 2151 </BACK> 2152 <NAME> 2153 <str><![CDATA[Default]]></str> 2154 </NAME> 2155 </style0> 2156 <style1> 2157 <FORE> 2158 <colour r="255" g="255" b="255" /> 2159 </FORE> 2160 <BACK> 2161 <colour r="34" g="40" b="42" /> 2162 </BACK> 2163 <NAME> 2164 <str><![CDATA[Default]]></str> 2165 </NAME> 2166 </style1> 2167 <style5> 2168 <FORE> 2169 <colour r="117" g="113" b="94" /> 2170 </FORE> 2171 <ITALICS bool="1" /> 2172 <NAME> 2173 <str><![CDATA[Comment (normal)]]></str> 2174 </NAME> 2175 </style5> 2176 <style6> 2177 <FORE> 2178 <colour r="117" g="113" b="94" /> 2179 </FORE> 2180 <ITALICS bool="1" /> 2181 <NAME> 2182 <str><![CDATA[Comment (normal)]]></str> 2183 </NAME> 2184 </style6> 2185 <style7> 2186 <FORE> 2187 <colour r="117" g="113" b="94" /> 2188 </FORE> 2189 <ITALICS bool="1" /> 2190 <NAME> 2191 <str><![CDATA[Comment (normal)]]></str> 2192 </NAME> 2193 </style7> 2194 <style8> 2195 <FORE> 2196 <colour r="117" g="113" b="94" /> 2197 </FORE> 2198 <ITALICS bool="1" /> 2199 <NAME> 2200 <str><![CDATA[Comment (normal)]]></str> 2201 </NAME> 2202 </style8> 2203 <style9> 2204 <FORE> 2205 <colour r="117" g="113" b="94" /> 2206 </FORE> 2207 <ITALICS bool="1" /> 2208 <NAME> 2209 <str><![CDATA[Comment line (normal)]]></str> 2210 </NAME> 2211 </style9> 2212 <style10> 2213 <FORE> 2214 <colour r="117" g="113" b="94" /> 2215 </FORE> 2216 <ITALICS bool="1" /> 2217 <NAME> 2218 <str><![CDATA[Comment line (normal)]]></str> 2219 </NAME> 2220 </style10> 2221 <style11> 2222 <FORE> 2223 <colour r="117" g="113" b="94" /> 2224 </FORE> 2225 <ITALICS bool="1" /> 2226 <NAME> 2227 <str><![CDATA[Comment (documentation)]]></str> 2228 </NAME> 2229 </style11> 2230 <style12> 2231 <FORE> 2232 <colour r="117" g="113" b="94" /> 2233 </FORE> 2234 <ITALICS bool="1" /> 2235 <NAME> 2236 <str><![CDATA[Comment (documentation)]]></str> 2237 </NAME> 2238 </style12> 2239 <style13> 2240 <FORE> 2241 <colour r="117" g="113" b="94" /> 2242 </FORE> 2243 <ITALICS bool="1" /> 2244 <NAME> 2245 <str><![CDATA[Comment line (documentation)]]></str> 2246 </NAME> 2247 </style13> 2248 <style14> 2249 <FORE> 2250 <colour r="117" g="113" b="94" /> 2251 </FORE> 2252 <ITALICS bool="1" /> 2253 <NAME> 2254 <str><![CDATA[Comment line (documentation)]]></str> 2255 </NAME> 2256 </style14> 2257 <style15> 2258 <FORE> 2259 <colour r="128" g="255" b="128" /> 2260 </FORE> 2261 <NAME> 2262 <str><![CDATA[Comment keyword (documentation)]]></str> 2263 </NAME> 2264 </style15> 2265 <style16> 2266 <FORE> 2267 <colour r="128" g="255" b="128" /> 2268 </FORE> 2269 <NAME> 2270 <str><![CDATA[Comment keyword (documentation)]]></str> 2271 </NAME> 2272 </style16> 2273 <style17> 2274 <FORE> 2275 <colour r="255" g="128" b="128" /> 2276 </FORE> 2277 <NAME> 2278 <str><![CDATA[Comment keyword error (documentation)]]></str> 2279 </NAME> 2280 </style17> 2281 <style18> 2282 <FORE> 2283 <colour r="255" g="128" b="128" /> 2284 </FORE> 2285 <NAME> 2286 <str><![CDATA[Comment keyword error (documentation)]]></str> 2287 </NAME> 2288 </style18> 2289 <style19> 2290 <FORE> 2291 <colour r="255" g="128" b="128" /> 2292 </FORE> 2293 <NAME> 2294 <str><![CDATA[Number]]></str> 2295 </NAME> 2296 </style19> 2297 <style21> 2298 <FORE> 2299 <colour r="38" g="249" b="173" /> 2300 </FORE> 2301 <BOLD bool="0" /> 2302 <ITALICS bool="1" /> 2303 <NAME> 2304 <str><![CDATA[Keyword]]></str> 2305 </NAME> 2306 </style21> 2307 <style23> 2308 <FORE> 2309 <colour r="249" g="38" b="114" /> 2310 </FORE> 2311 <BOLD bool="0" /> 2312 <ITALICS bool="1" /> 2313 <NAME> 2314 <str><![CDATA[User keyword]]></str> 2315 </NAME> 2316 </style23> 2317 <style27> 2318 <FORE> 2319 <colour r="224" g="160" b="0" /> 2320 </FORE> 2321 <NAME> 2322 <str><![CDATA[String]]></str> 2323 </NAME> 2324 </style27> 2325 <style28> 2326 <FORE> 2327 <colour r="224" g="160" b="0" /> 2328 </FORE> 2329 <NAME> 2330 <str><![CDATA[String]]></str> 2331 </NAME> 2332 </style28> 2333 <style34> 2334 <FORE> 2335 <colour r="249" g="38" b="114" /> 2336 </FORE> 2337 <NAME> 2338 <str><![CDATA[Preprocessor]]></str> 2339 </NAME> 2340 </style34> 2341 <style36> 2342 <FORE> 2343 <colour r="166" g="226" b="46" /> 2344 </FORE> 2345 <NAME> 2346 <str><![CDATA[Operator]]></str> 2347 </NAME> 2348 </style36> 2349 <style38> 2350 <BACK> 2351 <colour r="17" g="64" b="76" /> 2352 </BACK> 2353 <NAME> 2354 <str><![CDATA[Selection]]></str> 2355 </NAME> 2356 </style38> 2357 <style39> 2358 <BACK> 2359 <colour r="47" g="57" b="60" /> 2360 </BACK> 2361 <NAME> 2362 <str><![CDATA[Active line]]></str> 2363 </NAME> 2364 </style39> 2365 <NAME> 2366 <str><![CDATA[C/C++]]></str> 2367 </NAME> 2368 <editor> 2369 <keywords /> 2370 </editor> 2371 </cc> 2372 </modnokai_night_shift> 2373 <default> 2374 <NAME> 2375 <str><![CDATA[default]]></str> 2376 </NAME> 2377 </default> 2378 <kft2> 2379 <NAME> 2380 <str><![CDATA[kft2]]></str> 2381 </NAME> 2382 <cc> 2383 <style0> 2384 <FORE> 2385 <colour r="93" g="255" b="105" /> 2386 </FORE> 2387 <BACK> 2388 <colour r="28" g="0" b="36" /> 2389 </BACK> 2390 <NAME> 2391 <str><![CDATA[Default]]></str> 2392 </NAME> 2393 </style0> 2394 <style1> 2395 <FORE> 2396 <colour r="93" g="255" b="105" /> 2397 </FORE> 2398 <BACK> 2399 <colour r="28" g="0" b="36" /> 2400 </BACK> 2401 <NAME> 2402 <str><![CDATA[Default]]></str> 2403 </NAME> 2404 </style1> 2405 <style5> 2406 <FORE> 2407 <colour r="0" g="128" b="128" /> 2408 </FORE> 2409 <NAME> 2410 <str><![CDATA[Comment (normal)]]></str> 2411 </NAME> 2412 </style5> 2413 <style6> 2414 <FORE> 2415 <colour r="0" g="128" b="128" /> 2416 </FORE> 2417 <NAME> 2418 <str><![CDATA[Comment (normal)]]></str> 2419 </NAME> 2420 </style6> 2421 <style7> 2422 <FORE> 2423 <colour r="0" g="128" b="128" /> 2424 </FORE> 2425 <NAME> 2426 <str><![CDATA[Comment (normal)]]></str> 2427 </NAME> 2428 </style7> 2429 <style8> 2430 <FORE> 2431 <colour r="0" g="128" b="128" /> 2432 </FORE> 2433 <NAME> 2434 <str><![CDATA[Comment (normal)]]></str> 2435 </NAME> 2436 </style8> 2437 <style11> 2438 <FORE> 2439 <colour r="100" g="211" b="222" /> 2440 </FORE> 2441 <BOLD bool="0" /> 2442 <NAME> 2443 <str><![CDATA[Comment (documentation)]]></str> 2444 </NAME> 2445 </style11> 2446 <style12> 2447 <FORE> 2448 <colour r="100" g="211" b="222" /> 2449 </FORE> 2450 <BOLD bool="0" /> 2451 <NAME> 2452 <str><![CDATA[Comment (documentation)]]></str> 2453 </NAME> 2454 </style12> 2455 <style15> 2456 <FORE> 2457 <colour r="10" g="187" b="187" /> 2458 </FORE> 2459 <NAME> 2460 <str><![CDATA[Comment keyword (documentation)]]></str> 2461 </NAME> 2462 </style15> 2463 <style16> 2464 <FORE> 2465 <colour r="10" g="187" b="187" /> 2466 </FORE> 2467 <NAME> 2468 <str><![CDATA[Comment keyword (documentation)]]></str> 2469 </NAME> 2470 </style16> 2471 <style19> 2472 <FORE> 2473 <colour r="255" g="241" b="0" /> 2474 </FORE> 2475 <NAME> 2476 <str><![CDATA[Number]]></str> 2477 </NAME> 2478 </style19> 2479 <style21> 2480 <FORE> 2481 <colour r="63" g="118" b="255" /> 2482 </FORE> 2483 <BOLD bool="0" /> 2484 <NAME> 2485 <str><![CDATA[Keyword]]></str> 2486 </NAME> 2487 </style21> 2488 <style23> 2489 <FORE> 2490 <colour r="0" g="222" b="0" /> 2491 </FORE> 2492 <BOLD bool="0" /> 2493 <NAME> 2494 <str><![CDATA[User keyword]]></str> 2495 </NAME> 2496 </style23> 2497 <style27> 2498 <FORE> 2499 <colour r="171" g="171" b="171" /> 2500 </FORE> 2501 <NAME> 2502 <str><![CDATA[String]]></str> 2503 </NAME> 2504 </style27> 2505 <style28> 2506 <FORE> 2507 <colour r="171" g="171" b="171" /> 2508 </FORE> 2509 <NAME> 2510 <str><![CDATA[String]]></str> 2511 </NAME> 2512 </style28> 2513 <style31> 2514 <FORE> 2515 <colour r="255" g="176" b="53" /> 2516 </FORE> 2517 <NAME> 2518 <str><![CDATA[Character]]></str> 2519 </NAME> 2520 </style31> 2521 <style33> 2522 <FORE> 2523 <colour r="255" g="0" b="0" /> 2524 </FORE> 2525 <NAME> 2526 <str><![CDATA[UUID]]></str> 2527 </NAME> 2528 </style33> 2529 <style34> 2530 <FORE> 2531 <colour r="33" g="237" b="33" /> 2532 </FORE> 2533 <NAME> 2534 <str><![CDATA[Preprocessor]]></str> 2535 </NAME> 2536 </style34> 2537 <style36> 2538 <FORE> 2539 <colour r="255" g="0" b="206" /> 2540 </FORE> 2541 <BOLD bool="1" /> 2542 <NAME> 2543 <str><![CDATA[Operator]]></str> 2544 </NAME> 2545 </style36> 2546 <style38> 2547 <FORE> 2548 <colour r="255" g="196" b="253" /> 2549 </FORE> 2550 <BACK> 2551 <colour r="78" g="0" b="86" /> 2552 </BACK> 2553 <NAME> 2554 <str><![CDATA[Selection]]></str> 2555 </NAME> 2556 </style38> 2557 <style39> 2558 <FORE> 2559 <colour r="0" g="255" b="14" /> 2560 </FORE> 2561 <NAME> 2562 <str><![CDATA[Active line]]></str> 2563 </NAME> 2564 </style39> 2565 <style40> 2566 <FORE> 2567 <colour r="255" g="0" b="0" /> 2568 </FORE> 2569 <BACK> 2570 <colour r="0" g="0" b="0" /> 2571 </BACK> 2572 <BOLD bool="0" /> 2573 <NAME> 2574 <str><![CDATA[Matching brace highlight]]></str> 2575 </NAME> 2576 </style40> 2577 <editor> 2578 <keywords> 2579 <SET4> 2580 <str><![CDATA[_DEBUG=1 __cplusplus __GNUC__ __GNUG__]]></str> 2581 </SET4> 2582 </keywords> 2583 </editor> 2584 <NAME> 2585 <str><![CDATA[C/C++]]></str> 2586 </NAME> 2587 </cc> 2588 </kft2> 2589 <modnokai_night_shift_v2> 2590 <NAME> 2591 <str><![CDATA[modnokai night shift v2]]></str> 2592 </NAME> 2593 <cc> 2594 <style0> 2595 <FORE> 2596 <colour r="255" g="255" b="255" /> 2597 </FORE> 2598 <BACK> 2599 <colour r="0" g="0" b="0" /> 2600 </BACK> 2601 <NAME> 2602 <str><![CDATA[Default]]></str> 2603 </NAME> 2604 </style0> 2605 <style1> 2606 <FORE> 2607 <colour r="255" g="255" b="255" /> 2608 </FORE> 2609 <BACK> 2610 <colour r="0" g="0" b="0" /> 2611 </BACK> 2612 <NAME> 2613 <str><![CDATA[Default]]></str> 2614 </NAME> 2615 </style1> 2616 <style5> 2617 <FORE> 2618 <colour r="117" g="113" b="94" /> 2619 </FORE> 2620 <ITALICS bool="1" /> 2621 <NAME> 2622 <str><![CDATA[Comment (normal)]]></str> 2623 </NAME> 2624 </style5> 2625 <style6> 2626 <FORE> 2627 <colour r="117" g="113" b="94" /> 2628 </FORE> 2629 <ITALICS bool="1" /> 2630 <NAME> 2631 <str><![CDATA[Comment (normal)]]></str> 2632 </NAME> 2633 </style6> 2634 <style7> 2635 <FORE> 2636 <colour r="117" g="113" b="94" /> 2637 </FORE> 2638 <ITALICS bool="1" /> 2639 <NAME> 2640 <str><![CDATA[Comment (normal)]]></str> 2641 </NAME> 2642 </style7> 2643 <style8> 2644 <FORE> 2645 <colour r="117" g="113" b="94" /> 2646 </FORE> 2647 <ITALICS bool="1" /> 2648 <NAME> 2649 <str><![CDATA[Comment (normal)]]></str> 2650 </NAME> 2651 </style8> 2652 <style9> 2653 <FORE> 2654 <colour r="117" g="113" b="94" /> 2655 </FORE> 2656 <ITALICS bool="1" /> 2657 <NAME> 2658 <str><![CDATA[Comment line (normal)]]></str> 2659 </NAME> 2660 </style9> 2661 <style10> 2662 <FORE> 2663 <colour r="117" g="113" b="94" /> 2664 </FORE> 2665 <ITALICS bool="1" /> 2666 <NAME> 2667 <str><![CDATA[Comment line (normal)]]></str> 2668 </NAME> 2669 </style10> 2670 <style11> 2671 <FORE> 2672 <colour r="117" g="113" b="94" /> 2673 </FORE> 2674 <ITALICS bool="1" /> 2675 <NAME> 2676 <str><![CDATA[Comment (documentation)]]></str> 2677 </NAME> 2678 </style11> 2679 <style12> 2680 <FORE> 2681 <colour r="117" g="113" b="94" /> 2682 </FORE> 2683 <ITALICS bool="1" /> 2684 <NAME> 2685 <str><![CDATA[Comment (documentation)]]></str> 2686 </NAME> 2687 </style12> 2688 <style13> 2689 <FORE> 2690 <colour r="117" g="113" b="94" /> 2691 </FORE> 2692 <ITALICS bool="1" /> 2693 <NAME> 2694 <str><![CDATA[Comment line (documentation)]]></str> 2695 </NAME> 2696 </style13> 2697 <style14> 2698 <FORE> 2699 <colour r="117" g="113" b="94" /> 2700 </FORE> 2701 <ITALICS bool="1" /> 2702 <NAME> 2703 <str><![CDATA[Comment line (documentation)]]></str> 2704 </NAME> 2705 </style14> 2706 <style15> 2707 <FORE> 2708 <colour r="128" g="255" b="128" /> 2709 </FORE> 2710 <NAME> 2711 <str><![CDATA[Comment keyword (documentation)]]></str> 2712 </NAME> 2713 </style15> 2714 <style16> 2715 <FORE> 2716 <colour r="128" g="255" b="128" /> 2717 </FORE> 2718 <NAME> 2719 <str><![CDATA[Comment keyword (documentation)]]></str> 2720 </NAME> 2721 </style16> 2722 <style17> 2723 <FORE> 2724 <colour r="255" g="128" b="128" /> 2725 </FORE> 2726 <NAME> 2727 <str><![CDATA[Comment keyword error (documentation)]]></str> 2728 </NAME> 2729 </style17> 2730 <style18> 2731 <FORE> 2732 <colour r="255" g="128" b="128" /> 2733 </FORE> 2734 <NAME> 2735 <str><![CDATA[Comment keyword error (documentation)]]></str> 2736 </NAME> 2737 </style18> 2738 <style19> 2739 <FORE> 2740 <colour r="255" g="128" b="128" /> 2741 </FORE> 2742 <NAME> 2743 <str><![CDATA[Number]]></str> 2744 </NAME> 2745 </style19> 2746 <style21> 2747 <FORE> 2748 <colour r="120" g="215" b="236" /> 2749 </FORE> 2750 <BOLD bool="0" /> 2751 <ITALICS bool="1" /> 2752 <NAME> 2753 <str><![CDATA[Keyword]]></str> 2754 </NAME> 2755 </style21> 2756 <style23> 2757 <FORE> 2758 <colour r="249" g="38" b="114" /> 2759 </FORE> 2760 <BOLD bool="0" /> 2761 <ITALICS bool="1" /> 2762 <NAME> 2763 <str><![CDATA[User keyword]]></str> 2764 </NAME> 2765 </style23> 2766 <style27> 2767 <FORE> 2768 <colour r="224" g="160" b="0" /> 2769 </FORE> 2770 <NAME> 2771 <str><![CDATA[String]]></str> 2772 </NAME> 2773 </style27> 2774 <style28> 2775 <FORE> 2776 <colour r="224" g="160" b="0" /> 2777 </FORE> 2778 <NAME> 2779 <str><![CDATA[String]]></str> 2780 </NAME> 2781 </style28> 2782 <style34> 2783 <FORE> 2784 <colour r="249" g="38" b="114" /> 2785 </FORE> 2786 <NAME> 2787 <str><![CDATA[Preprocessor]]></str> 2788 </NAME> 2789 </style34> 2790 <style36> 2791 <FORE> 2792 <colour r="166" g="226" b="46" /> 2793 </FORE> 2794 <NAME> 2795 <str><![CDATA[Operator]]></str> 2796 </NAME> 2797 </style36> 2798 <style38> 2799 <BACK> 2800 <colour r="17" g="64" b="76" /> 2801 </BACK> 2802 <NAME> 2803 <str><![CDATA[Selection]]></str> 2804 </NAME> 2805 </style38> 2806 <style39> 2807 <BACK> 2808 <colour r="34" g="40" b="42" /> 2809 </BACK> 2810 <NAME> 2811 <str><![CDATA[Active line]]></str> 2812 </NAME> 2813 </style39> 2814 <editor> 2815 <keywords> 2816 <SET4> 2817 <str><![CDATA[__cplusplus __GNUC__ __GNUG__]]></str> 2818 </SET4> 2819 </keywords> 2820 </editor> 2821 <NAME> 2822 <str><![CDATA[C/C++]]></str> 2823 </NAME> 2824 </cc> 2825 </modnokai_night_shift_v2> 2826 </colour_sets>
启动Code::Blocks, 选定settings -> Editor -> Syntax Highlighting, 在Colour Theme中选定自己喜欢的主题, 最后点击OK即可.