├── .gitignore ├── screenshots ├── ocean-dark.png └── solarized-light.png ├── .gitmodules ├── Makefile ├── README.md ├── ipython-2 └── output │ ├── base16-bespin-dark.css │ ├── base16-bespin-light.css │ ├── base16-isotope-dark.css │ ├── base16-isotope-light.css │ ├── base16-paraiso-dark.css │ ├── base16-paraiso-light.css │ ├── base16-codeschool-dark.css │ ├── base16-codeschool-light.css │ ├── base16-hopscotch-dark.css │ ├── base16-hopscotch-light.css │ ├── base16-londontube-dark.css │ ├── base16-colors-dark.css │ ├── base16-colors-light.css │ ├── base16-londontube-light.css │ ├── base16-flat-dark.css │ ├── base16-pop-dark.css │ ├── base16-pop-light.css │ ├── base16-3024-dark.css │ ├── base16-3024-light.css │ ├── base16-bright-dark.css │ ├── base16-chalk-dark.css │ ├── base16-chalk-light.css │ ├── base16-flat-light.css │ ├── base16-google-dark.css │ ├── base16-google-light.css │ ├── base16-mocha-dark.css │ ├── base16-mocha-light.css │ ├── base16-ocean-dark.css │ ├── base16-ocean-light.css │ ├── base16-twilight-dark.css │ ├── base16-twilight-light.css │ ├── base16-apathy-dark.css │ ├── base16-apathy-light.css │ ├── base16-ashes-dark.css │ └── base16-ashes-light.css └── ipython-3 └── output ├── base16-bespin-dark.css ├── base16-bespin-light.css ├── base16-isotope-dark.css ├── base16-isotope-light.css ├── base16-paraiso-dark.css ├── base16-paraiso-light.css ├── base16-codeschool-dark.css ├── base16-codeschool-light.css ├── base16-hopscotch-dark.css ├── base16-hopscotch-light.css ├── base16-londontube-dark.css ├── base16-colors-dark.css ├── base16-colors-light.css ├── base16-londontube-light.css ├── base16-flat-dark.css ├── base16-pop-dark.css ├── base16-pop-light.css ├── base16-3024-dark.css ├── base16-3024-light.css ├── base16-bright-dark.css ├── base16-chalk-dark.css ├── base16-chalk-light.css ├── base16-flat-light.css ├── base16-google-dark.css ├── base16-google-light.css ├── base16-mocha-dark.css ├── base16-mocha-light.css ├── base16-ocean-dark.css ├── base16-ocean-light.css ├── base16-twilight-dark.css └── base16-twilight-light.css /.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | -------------------------------------------------------------------------------- /screenshots/ocean-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsonnad/base16-ipython-notebook/HEAD/screenshots/ocean-dark.png -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "base16-builder"] 2 | path = base16-builder 3 | url = https://github.com/chriskempson/base16-builder 4 | -------------------------------------------------------------------------------- /screenshots/solarized-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsonnad/base16-ipython-notebook/HEAD/screenshots/solarized-light.png -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | OBJECTS = \ 2 | ./ipython-2/output \ 3 | ./ipython-3/output 4 | 5 | all: ${OBJECTS} 6 | 7 | base16-builder: 8 | git submodule init 9 | git submodule update 10 | 11 | tmp/schemes: base16-builder 12 | mkdir -p $(dir $@) 13 | cp -r $` 21 | 22 | To locate the directory of your profile, do: 23 | 24 | `ipython locate profile ` 25 | 26 | Your style sheet will need to be named `custom.css` and 27 | placed in the `/static/custom` directory of your profile. So you might grab the `ocean-dark` theme like so: 28 | 29 | ```sh 30 | wget -O `ipython locate profile `/static/custom/custom.css 31 | https://raw.githubusercontent.com/nsonnad/base16-ipython-notebook/master/ipython-2/output/base16-ocean-dark.css 32 | ``` 33 | 34 | ## Build 35 | 36 | You can edit the templates (located in `./ipython-2/templates` and 37 | `./ipython-3/templates`) by running `make`. 38 | 39 | ## What happened to the toolbar? 40 | 41 | You will probably notice that the top toolbar is gone in these styles. I've hidden it in the 42 | CSS by default, as I find it mostly useless. If you want it back, just 43 | comment out this line: 44 | 45 | ``` css 46 | div#maintoolbar, div#header {display: none !important;} 47 | ``` 48 | 49 | ## Custom fonts 50 | 51 | You can use custom fonts in IPython Notebook by uncommenting a block of code at 52 | the top, eg: 53 | 54 | ``` css 55 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 56 | font-family: 'Inconsolata', monospace !important; 57 | font-size: 16px; 58 | } 59 | ``` 60 | 61 | ## Credits 62 | 63 | * Uses Base16 builder by [Chris Kempson][3]. 64 | * Based on [base16-codemirror][4] by [Jan T. Scott][5] 65 | 66 | [1]: http://ipython.org/notebook.html 67 | [2]: https://github.com/chriskempson/base16 68 | [3]: https://github.com/chriskempson 69 | [4]: https://github.com/idleberg/base16-codemirror 70 | [5]: https://github.com/idleberg 71 | -------------------------------------------------------------------------------- /ipython-2/output/base16-bespin-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Bespin Dark 4 | Author: Jan T. Sott 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #28211c;} 20 | a {color: #5ea6ea;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #9d9b97;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #937121;} 33 | div.output_prompt {color: #9b859d;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #5e5d5c; 37 | } 38 | div.output_area pre {font-weight: normal; color: #8a8986;} 39 | div.output_subarea {font-weight: normal; color: #8a8986;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #8a8986 solid; 43 | color: #8a8986; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #8a8986;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #9b859d;} 50 | div.text_cell_render, div.output_html {color: #8a8986;} 51 | 52 | span.ansiblack {color: #36312e;} 53 | span.ansiblue {color: #afc4db;} 54 | span.ansigray {color: #797977;} 55 | span.ansigreen {color: #54be0d;} 56 | span.ansipurple {color: #9b859d;} 57 | span.ansired {color: #cf6a4c;} 58 | span.ansiyellow {color: #f9ee98;} 59 | 60 | div.output_stderr {background-color: #cf6a4c;} 61 | div.output_stderr pre {color: #9d9b97;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #28211c; color: #9d9b97;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #36312e !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #28211c; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #666666;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #797977 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #937121;} 70 | .cm-s-ipython span.cm-atom {color: #9b859d;} 71 | .cm-s-ipython span.cm-number {color: #9b859d;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #54be0d;} 74 | .cm-s-ipython span.cm-keyword {color: #cf6a4c;} 75 | .cm-s-ipython span.cm-string {color: #f9ee98;} 76 | .cm-s-ipython span.cm-operator {color: #937121;} 77 | .cm-s-ipython span.cm-builtin {color: #9b859d;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #54be0d;} 80 | .cm-s-ipython span.cm-variable-2 {color: #5ea6ea;} 81 | .cm-s-ipython span.cm-def {color: #cf7d34;} 82 | .cm-s-ipython span.cm-error {background: #cf6a4c; color: #797977;} 83 | .cm-s-ipython span.cm-bracket {color: #8a8986;} 84 | .cm-s-ipython span.cm-tag {color: #cf6a4c;} 85 | .cm-s-ipython span.cm-link {color: #9b859d;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #9d9b97 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-bespin-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Bespin Light 4 | Author: Jan T. Sott 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #baae9e;} 20 | a {color: #5ea6ea;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #36312e;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #9b859d;} 33 | div.output_prompt {color: #937121;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #8a8986; 37 | } 38 | div.output_area pre {font-weight: normal; color: #5e5d5c;} 39 | div.output_subarea {font-weight: normal; color: #5e5d5c;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #666666 solid; 43 | color: #666666; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #5e5d5c;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #937121;} 50 | div.text_cell_render, div.output_html {color: #5e5d5c;} 51 | 52 | span.ansiblack {color: #36312e;} 53 | span.ansiblue {color: #afc4db;} 54 | span.ansigray {color: #797977;} 55 | span.ansigreen {color: #54be0d;} 56 | span.ansipurple {color: #9b859d;} 57 | span.ansired {color: #cf6a4c;} 58 | span.ansiyellow {color: #f9ee98;} 59 | 60 | div.output_stderr {background-color: #cf6a4c;} 61 | div.output_stderr pre {color: #9d9b97;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #baae9e; color: #36312e;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #9d9b97 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #baae9e; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #797977;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #666666 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #937121;} 70 | .cm-s-ipython span.cm-atom {color: #9b859d;} 71 | .cm-s-ipython span.cm-number {color: #9b859d;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #54be0d;} 74 | .cm-s-ipython span.cm-keyword {color: #cf6a4c;} 75 | .cm-s-ipython span.cm-string {color: #f9ee98;} 76 | .cm-s-ipython span.cm-operator {color: #937121;} 77 | .cm-s-ipython span.cm-builtin {color: #9b859d;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #54be0d;} 80 | .cm-s-ipython span.cm-variable-2 {color: #5ea6ea;} 81 | .cm-s-ipython span.cm-def {color: #cf7d34;} 82 | .cm-s-ipython span.cm-error {background: #cf6a4c; color: #666666;} 83 | .cm-s-ipython span.cm-bracket {color: #5e5d5c;} 84 | .cm-s-ipython span.cm-tag {color: #cf6a4c;} 85 | .cm-s-ipython span.cm-link {color: #9b859d;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #36312e !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-isotope-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Isotope Dark 4 | Author: Jan T. Sott 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #000000;} 20 | a {color: #0066ff;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #e0e0e0;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #3300ff;} 33 | div.output_prompt {color: #cc00ff;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #606060; 37 | } 38 | div.output_area pre {font-weight: normal; color: #d0d0d0;} 39 | div.output_subarea {font-weight: normal; color: #d0d0d0;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #d0d0d0 solid; 43 | color: #d0d0d0; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #d0d0d0;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #cc00ff;} 50 | div.text_cell_render, div.output_html {color: #d0d0d0;} 51 | 52 | span.ansiblack {color: #404040;} 53 | span.ansiblue {color: #00ffff;} 54 | span.ansigray {color: #c0c0c0;} 55 | span.ansigreen {color: #33ff00;} 56 | span.ansipurple {color: #cc00ff;} 57 | span.ansired {color: #ff0000;} 58 | span.ansiyellow {color: #ff0099;} 59 | 60 | div.output_stderr {background-color: #ff0000;} 61 | div.output_stderr pre {color: #e0e0e0;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #000000; color: #e0e0e0;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #404040 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #000000; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #808080;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #c0c0c0 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #3300ff;} 70 | .cm-s-ipython span.cm-atom {color: #cc00ff;} 71 | .cm-s-ipython span.cm-number {color: #cc00ff;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #33ff00;} 74 | .cm-s-ipython span.cm-keyword {color: #ff0000;} 75 | .cm-s-ipython span.cm-string {color: #ff0099;} 76 | .cm-s-ipython span.cm-operator {color: #3300ff;} 77 | .cm-s-ipython span.cm-builtin {color: #cc00ff;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #33ff00;} 80 | .cm-s-ipython span.cm-variable-2 {color: #0066ff;} 81 | .cm-s-ipython span.cm-def {color: #ff9900;} 82 | .cm-s-ipython span.cm-error {background: #ff0000; color: #c0c0c0;} 83 | .cm-s-ipython span.cm-bracket {color: #d0d0d0;} 84 | .cm-s-ipython span.cm-tag {color: #ff0000;} 85 | .cm-s-ipython span.cm-link {color: #cc00ff;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #e0e0e0 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-isotope-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Isotope Light 4 | Author: Jan T. Sott 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #ffffff;} 20 | a {color: #0066ff;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #404040;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #cc00ff;} 33 | div.output_prompt {color: #3300ff;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #d0d0d0; 37 | } 38 | div.output_area pre {font-weight: normal; color: #606060;} 39 | div.output_subarea {font-weight: normal; color: #606060;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #808080 solid; 43 | color: #808080; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #606060;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #3300ff;} 50 | div.text_cell_render, div.output_html {color: #606060;} 51 | 52 | span.ansiblack {color: #404040;} 53 | span.ansiblue {color: #00ffff;} 54 | span.ansigray {color: #c0c0c0;} 55 | span.ansigreen {color: #33ff00;} 56 | span.ansipurple {color: #cc00ff;} 57 | span.ansired {color: #ff0000;} 58 | span.ansiyellow {color: #ff0099;} 59 | 60 | div.output_stderr {background-color: #ff0000;} 61 | div.output_stderr pre {color: #e0e0e0;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #ffffff; color: #404040;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #e0e0e0 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #ffffff; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #c0c0c0;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #808080 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #3300ff;} 70 | .cm-s-ipython span.cm-atom {color: #cc00ff;} 71 | .cm-s-ipython span.cm-number {color: #cc00ff;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #33ff00;} 74 | .cm-s-ipython span.cm-keyword {color: #ff0000;} 75 | .cm-s-ipython span.cm-string {color: #ff0099;} 76 | .cm-s-ipython span.cm-operator {color: #3300ff;} 77 | .cm-s-ipython span.cm-builtin {color: #cc00ff;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #33ff00;} 80 | .cm-s-ipython span.cm-variable-2 {color: #0066ff;} 81 | .cm-s-ipython span.cm-def {color: #ff9900;} 82 | .cm-s-ipython span.cm-error {background: #ff0000; color: #808080;} 83 | .cm-s-ipython span.cm-bracket {color: #606060;} 84 | .cm-s-ipython span.cm-tag {color: #ff0000;} 85 | .cm-s-ipython span.cm-link {color: #cc00ff;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #404040 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-paraiso-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Paraiso Dark 4 | Author: Jan T. Sott 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #2f1e2e;} 20 | a {color: #06b6ef;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #b9b6b0;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #e96ba8;} 33 | div.output_prompt {color: #815ba4;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #4f424c; 37 | } 38 | div.output_area pre {font-weight: normal; color: #a39e9b;} 39 | div.output_subarea {font-weight: normal; color: #a39e9b;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #a39e9b solid; 43 | color: #a39e9b; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #a39e9b;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #815ba4;} 50 | div.text_cell_render, div.output_html {color: #a39e9b;} 51 | 52 | span.ansiblack {color: #41323f;} 53 | span.ansiblue {color: #5bc4bf;} 54 | span.ansigray {color: #8d8687;} 55 | span.ansigreen {color: #48b685;} 56 | span.ansipurple {color: #815ba4;} 57 | span.ansired {color: #ef6155;} 58 | span.ansiyellow {color: #fec418;} 59 | 60 | div.output_stderr {background-color: #ef6155;} 61 | div.output_stderr pre {color: #b9b6b0;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #2f1e2e; color: #b9b6b0;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #41323f !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #2f1e2e; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #776e71;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #8d8687 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #e96ba8;} 70 | .cm-s-ipython span.cm-atom {color: #815ba4;} 71 | .cm-s-ipython span.cm-number {color: #815ba4;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #48b685;} 74 | .cm-s-ipython span.cm-keyword {color: #ef6155;} 75 | .cm-s-ipython span.cm-string {color: #fec418;} 76 | .cm-s-ipython span.cm-operator {color: #e96ba8;} 77 | .cm-s-ipython span.cm-builtin {color: #815ba4;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #48b685;} 80 | .cm-s-ipython span.cm-variable-2 {color: #06b6ef;} 81 | .cm-s-ipython span.cm-def {color: #f99b15;} 82 | .cm-s-ipython span.cm-error {background: #ef6155; color: #8d8687;} 83 | .cm-s-ipython span.cm-bracket {color: #a39e9b;} 84 | .cm-s-ipython span.cm-tag {color: #ef6155;} 85 | .cm-s-ipython span.cm-link {color: #815ba4;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #b9b6b0 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-paraiso-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Paraiso Light 4 | Author: Jan T. Sott 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #e7e9db;} 20 | a {color: #06b6ef;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #41323f;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #815ba4;} 33 | div.output_prompt {color: #e96ba8;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #a39e9b; 37 | } 38 | div.output_area pre {font-weight: normal; color: #4f424c;} 39 | div.output_subarea {font-weight: normal; color: #4f424c;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #776e71 solid; 43 | color: #776e71; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #4f424c;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #e96ba8;} 50 | div.text_cell_render, div.output_html {color: #4f424c;} 51 | 52 | span.ansiblack {color: #41323f;} 53 | span.ansiblue {color: #5bc4bf;} 54 | span.ansigray {color: #8d8687;} 55 | span.ansigreen {color: #48b685;} 56 | span.ansipurple {color: #815ba4;} 57 | span.ansired {color: #ef6155;} 58 | span.ansiyellow {color: #fec418;} 59 | 60 | div.output_stderr {background-color: #ef6155;} 61 | div.output_stderr pre {color: #b9b6b0;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #e7e9db; color: #41323f;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #b9b6b0 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #e7e9db; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #8d8687;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #776e71 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #e96ba8;} 70 | .cm-s-ipython span.cm-atom {color: #815ba4;} 71 | .cm-s-ipython span.cm-number {color: #815ba4;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #48b685;} 74 | .cm-s-ipython span.cm-keyword {color: #ef6155;} 75 | .cm-s-ipython span.cm-string {color: #fec418;} 76 | .cm-s-ipython span.cm-operator {color: #e96ba8;} 77 | .cm-s-ipython span.cm-builtin {color: #815ba4;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #48b685;} 80 | .cm-s-ipython span.cm-variable-2 {color: #06b6ef;} 81 | .cm-s-ipython span.cm-def {color: #f99b15;} 82 | .cm-s-ipython span.cm-error {background: #ef6155; color: #776e71;} 83 | .cm-s-ipython span.cm-bracket {color: #4f424c;} 84 | .cm-s-ipython span.cm-tag {color: #ef6155;} 85 | .cm-s-ipython span.cm-link {color: #815ba4;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #41323f !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-bespin-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Bespin Dark 4 | Author: Jan T. Sott 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #28211c;} 20 | a {color: #5ea6ea;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #9d9b97;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #937121;} 33 | div.output_prompt {color: #9b859d;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #5e5d5c; 37 | } 38 | div.output_area pre {font-weight: normal; color: #8a8986;} 39 | div.output_subarea {font-weight: normal; color: #8a8986;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #8a8986 solid; 43 | color: #8a8986; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #8a8986;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #9b859d;} 50 | div.text_cell_render, div.output_html {color: #8a8986;} 51 | 52 | span.ansiblack {color: #36312e;} 53 | span.ansiblue {color: #afc4db;} 54 | span.ansigray {color: #797977;} 55 | span.ansigreen {color: #54be0d;} 56 | span.ansipurple {color: #9b859d;} 57 | span.ansired {color: #cf6a4c;} 58 | span.ansiyellow {color: #f9ee98;} 59 | 60 | div.output_stderr {background-color: #cf6a4c;} 61 | div.output_stderr pre {color: #9d9b97;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #28211c; color: #9d9b97;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #36312e !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #28211c; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #666666;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #797977 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #937121;} 70 | .cm-s-ipython span.cm-atom {color: #9b859d;} 71 | .cm-s-ipython span.cm-number {color: #9b859d;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #54be0d;} 74 | .cm-s-ipython span.cm-keyword {color: #cf6a4c;} 75 | .cm-s-ipython span.cm-string {color: #f9ee98;} 76 | .cm-s-ipython span.cm-operator {color: #937121;} 77 | .cm-s-ipython span.cm-builtin {color: #9b859d;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #54be0d;} 80 | .cm-s-ipython span.cm-variable-2 {color: #5ea6ea;} 81 | .cm-s-ipython span.cm-def {color: #cf7d34;} 82 | .cm-s-ipython span.cm-error {background: #cf6a4c; color: #797977;} 83 | .cm-s-ipython span.cm-bracket {color: #8a8986;} 84 | .cm-s-ipython span.cm-tag {color: #cf6a4c;} 85 | .cm-s-ipython span.cm-link {color: #9b859d;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #9d9b97 !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-bespin-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Bespin Light 4 | Author: Jan T. Sott 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #baae9e;} 20 | a {color: #5ea6ea;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #36312e;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #9b859d;} 33 | div.output_prompt {color: #937121;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #8a8986; 37 | } 38 | div.output_area pre {font-weight: normal; color: #5e5d5c;} 39 | div.output_subarea {font-weight: normal; color: #5e5d5c;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #666666 solid; 43 | color: #666666; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #5e5d5c;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #937121;} 50 | div.text_cell_render, div.output_html {color: #5e5d5c;} 51 | 52 | span.ansiblack {color: #36312e;} 53 | span.ansiblue {color: #afc4db;} 54 | span.ansigray {color: #797977;} 55 | span.ansigreen {color: #54be0d;} 56 | span.ansipurple {color: #9b859d;} 57 | span.ansired {color: #cf6a4c;} 58 | span.ansiyellow {color: #f9ee98;} 59 | 60 | div.output_stderr {background-color: #cf6a4c;} 61 | div.output_stderr pre {color: #9d9b97;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #baae9e; color: #36312e;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #9d9b97 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #baae9e; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #797977;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #666666 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #937121;} 70 | .cm-s-ipython span.cm-atom {color: #9b859d;} 71 | .cm-s-ipython span.cm-number {color: #9b859d;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #54be0d;} 74 | .cm-s-ipython span.cm-keyword {color: #cf6a4c;} 75 | .cm-s-ipython span.cm-string {color: #f9ee98;} 76 | .cm-s-ipython span.cm-operator {color: #937121;} 77 | .cm-s-ipython span.cm-builtin {color: #9b859d;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #54be0d;} 80 | .cm-s-ipython span.cm-variable-2 {color: #5ea6ea;} 81 | .cm-s-ipython span.cm-def {color: #cf7d34;} 82 | .cm-s-ipython span.cm-error {background: #cf6a4c; color: #666666;} 83 | .cm-s-ipython span.cm-bracket {color: #5e5d5c;} 84 | .cm-s-ipython span.cm-tag {color: #cf6a4c;} 85 | .cm-s-ipython span.cm-link {color: #9b859d;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #36312e !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-isotope-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Isotope Dark 4 | Author: Jan T. Sott 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #000000;} 20 | a {color: #0066ff;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #e0e0e0;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #3300ff;} 33 | div.output_prompt {color: #cc00ff;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #606060; 37 | } 38 | div.output_area pre {font-weight: normal; color: #d0d0d0;} 39 | div.output_subarea {font-weight: normal; color: #d0d0d0;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #d0d0d0 solid; 43 | color: #d0d0d0; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #d0d0d0;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #cc00ff;} 50 | div.text_cell_render, div.output_html {color: #d0d0d0;} 51 | 52 | span.ansiblack {color: #404040;} 53 | span.ansiblue {color: #00ffff;} 54 | span.ansigray {color: #c0c0c0;} 55 | span.ansigreen {color: #33ff00;} 56 | span.ansipurple {color: #cc00ff;} 57 | span.ansired {color: #ff0000;} 58 | span.ansiyellow {color: #ff0099;} 59 | 60 | div.output_stderr {background-color: #ff0000;} 61 | div.output_stderr pre {color: #e0e0e0;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #000000; color: #e0e0e0;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #404040 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #000000; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #808080;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #c0c0c0 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #3300ff;} 70 | .cm-s-ipython span.cm-atom {color: #cc00ff;} 71 | .cm-s-ipython span.cm-number {color: #cc00ff;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #33ff00;} 74 | .cm-s-ipython span.cm-keyword {color: #ff0000;} 75 | .cm-s-ipython span.cm-string {color: #ff0099;} 76 | .cm-s-ipython span.cm-operator {color: #3300ff;} 77 | .cm-s-ipython span.cm-builtin {color: #cc00ff;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #33ff00;} 80 | .cm-s-ipython span.cm-variable-2 {color: #0066ff;} 81 | .cm-s-ipython span.cm-def {color: #ff9900;} 82 | .cm-s-ipython span.cm-error {background: #ff0000; color: #c0c0c0;} 83 | .cm-s-ipython span.cm-bracket {color: #d0d0d0;} 84 | .cm-s-ipython span.cm-tag {color: #ff0000;} 85 | .cm-s-ipython span.cm-link {color: #cc00ff;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #e0e0e0 !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-isotope-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Isotope Light 4 | Author: Jan T. Sott 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #ffffff;} 20 | a {color: #0066ff;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #404040;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #cc00ff;} 33 | div.output_prompt {color: #3300ff;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #d0d0d0; 37 | } 38 | div.output_area pre {font-weight: normal; color: #606060;} 39 | div.output_subarea {font-weight: normal; color: #606060;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #808080 solid; 43 | color: #808080; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #606060;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #3300ff;} 50 | div.text_cell_render, div.output_html {color: #606060;} 51 | 52 | span.ansiblack {color: #404040;} 53 | span.ansiblue {color: #00ffff;} 54 | span.ansigray {color: #c0c0c0;} 55 | span.ansigreen {color: #33ff00;} 56 | span.ansipurple {color: #cc00ff;} 57 | span.ansired {color: #ff0000;} 58 | span.ansiyellow {color: #ff0099;} 59 | 60 | div.output_stderr {background-color: #ff0000;} 61 | div.output_stderr pre {color: #e0e0e0;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #ffffff; color: #404040;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #e0e0e0 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #ffffff; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #c0c0c0;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #808080 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #3300ff;} 70 | .cm-s-ipython span.cm-atom {color: #cc00ff;} 71 | .cm-s-ipython span.cm-number {color: #cc00ff;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #33ff00;} 74 | .cm-s-ipython span.cm-keyword {color: #ff0000;} 75 | .cm-s-ipython span.cm-string {color: #ff0099;} 76 | .cm-s-ipython span.cm-operator {color: #3300ff;} 77 | .cm-s-ipython span.cm-builtin {color: #cc00ff;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #33ff00;} 80 | .cm-s-ipython span.cm-variable-2 {color: #0066ff;} 81 | .cm-s-ipython span.cm-def {color: #ff9900;} 82 | .cm-s-ipython span.cm-error {background: #ff0000; color: #808080;} 83 | .cm-s-ipython span.cm-bracket {color: #606060;} 84 | .cm-s-ipython span.cm-tag {color: #ff0000;} 85 | .cm-s-ipython span.cm-link {color: #cc00ff;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #404040 !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-paraiso-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Paraiso Dark 4 | Author: Jan T. Sott 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #2f1e2e;} 20 | a {color: #06b6ef;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #b9b6b0;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #e96ba8;} 33 | div.output_prompt {color: #815ba4;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #4f424c; 37 | } 38 | div.output_area pre {font-weight: normal; color: #a39e9b;} 39 | div.output_subarea {font-weight: normal; color: #a39e9b;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #a39e9b solid; 43 | color: #a39e9b; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #a39e9b;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #815ba4;} 50 | div.text_cell_render, div.output_html {color: #a39e9b;} 51 | 52 | span.ansiblack {color: #41323f;} 53 | span.ansiblue {color: #5bc4bf;} 54 | span.ansigray {color: #8d8687;} 55 | span.ansigreen {color: #48b685;} 56 | span.ansipurple {color: #815ba4;} 57 | span.ansired {color: #ef6155;} 58 | span.ansiyellow {color: #fec418;} 59 | 60 | div.output_stderr {background-color: #ef6155;} 61 | div.output_stderr pre {color: #b9b6b0;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #2f1e2e; color: #b9b6b0;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #41323f !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #2f1e2e; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #776e71;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #8d8687 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #e96ba8;} 70 | .cm-s-ipython span.cm-atom {color: #815ba4;} 71 | .cm-s-ipython span.cm-number {color: #815ba4;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #48b685;} 74 | .cm-s-ipython span.cm-keyword {color: #ef6155;} 75 | .cm-s-ipython span.cm-string {color: #fec418;} 76 | .cm-s-ipython span.cm-operator {color: #e96ba8;} 77 | .cm-s-ipython span.cm-builtin {color: #815ba4;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #48b685;} 80 | .cm-s-ipython span.cm-variable-2 {color: #06b6ef;} 81 | .cm-s-ipython span.cm-def {color: #f99b15;} 82 | .cm-s-ipython span.cm-error {background: #ef6155; color: #8d8687;} 83 | .cm-s-ipython span.cm-bracket {color: #a39e9b;} 84 | .cm-s-ipython span.cm-tag {color: #ef6155;} 85 | .cm-s-ipython span.cm-link {color: #815ba4;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #b9b6b0 !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-paraiso-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Paraiso Light 4 | Author: Jan T. Sott 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #e7e9db;} 20 | a {color: #06b6ef;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #41323f;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #815ba4;} 33 | div.output_prompt {color: #e96ba8;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #a39e9b; 37 | } 38 | div.output_area pre {font-weight: normal; color: #4f424c;} 39 | div.output_subarea {font-weight: normal; color: #4f424c;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #776e71 solid; 43 | color: #776e71; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #4f424c;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #e96ba8;} 50 | div.text_cell_render, div.output_html {color: #4f424c;} 51 | 52 | span.ansiblack {color: #41323f;} 53 | span.ansiblue {color: #5bc4bf;} 54 | span.ansigray {color: #8d8687;} 55 | span.ansigreen {color: #48b685;} 56 | span.ansipurple {color: #815ba4;} 57 | span.ansired {color: #ef6155;} 58 | span.ansiyellow {color: #fec418;} 59 | 60 | div.output_stderr {background-color: #ef6155;} 61 | div.output_stderr pre {color: #b9b6b0;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #e7e9db; color: #41323f;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #b9b6b0 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #e7e9db; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #8d8687;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #776e71 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #e96ba8;} 70 | .cm-s-ipython span.cm-atom {color: #815ba4;} 71 | .cm-s-ipython span.cm-number {color: #815ba4;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #48b685;} 74 | .cm-s-ipython span.cm-keyword {color: #ef6155;} 75 | .cm-s-ipython span.cm-string {color: #fec418;} 76 | .cm-s-ipython span.cm-operator {color: #e96ba8;} 77 | .cm-s-ipython span.cm-builtin {color: #815ba4;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #48b685;} 80 | .cm-s-ipython span.cm-variable-2 {color: #06b6ef;} 81 | .cm-s-ipython span.cm-def {color: #f99b15;} 82 | .cm-s-ipython span.cm-error {background: #ef6155; color: #776e71;} 83 | .cm-s-ipython span.cm-bracket {color: #4f424c;} 84 | .cm-s-ipython span.cm-tag {color: #ef6155;} 85 | .cm-s-ipython span.cm-link {color: #815ba4;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #41323f !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-codeschool-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Codeschool Dark 4 | Author: brettof86 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #232c31;} 20 | a {color: #484d79;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #a7cfa3;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #c98344;} 33 | div.output_prompt {color: #c59820;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #2a343a; 37 | } 38 | div.output_area pre {font-weight: normal; color: #9ea7a6;} 39 | div.output_subarea {font-weight: normal; color: #9ea7a6;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #9ea7a6 solid; 43 | color: #9ea7a6; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #9ea7a6;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #c59820;} 50 | div.text_cell_render, div.output_html {color: #9ea7a6;} 51 | 52 | span.ansiblack {color: #1c3657;} 53 | span.ansiblue {color: #b02f30;} 54 | span.ansigray {color: #84898c;} 55 | span.ansigreen {color: #237986;} 56 | span.ansipurple {color: #c59820;} 57 | span.ansired {color: #2a5491;} 58 | span.ansiyellow {color: #a03b1e;} 59 | 60 | div.output_stderr {background-color: #2a5491;} 61 | div.output_stderr pre {color: #a7cfa3;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #232c31; color: #a7cfa3;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #1c3657 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #232c31; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #3f4944;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #84898c !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #c98344;} 70 | .cm-s-ipython span.cm-atom {color: #c59820;} 71 | .cm-s-ipython span.cm-number {color: #c59820;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #237986;} 74 | .cm-s-ipython span.cm-keyword {color: #2a5491;} 75 | .cm-s-ipython span.cm-string {color: #a03b1e;} 76 | .cm-s-ipython span.cm-operator {color: #c98344;} 77 | .cm-s-ipython span.cm-builtin {color: #c59820;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #237986;} 80 | .cm-s-ipython span.cm-variable-2 {color: #484d79;} 81 | .cm-s-ipython span.cm-def {color: #43820d;} 82 | .cm-s-ipython span.cm-error {background: #2a5491; color: #84898c;} 83 | .cm-s-ipython span.cm-bracket {color: #9ea7a6;} 84 | .cm-s-ipython span.cm-tag {color: #2a5491;} 85 | .cm-s-ipython span.cm-link {color: #c59820;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #a7cfa3 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-codeschool-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Codeschool Light 4 | Author: brettof86 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #b5d8f6;} 20 | a {color: #484d79;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #1c3657;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #c59820;} 33 | div.output_prompt {color: #c98344;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #9ea7a6; 37 | } 38 | div.output_area pre {font-weight: normal; color: #2a343a;} 39 | div.output_subarea {font-weight: normal; color: #2a343a;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #3f4944 solid; 43 | color: #3f4944; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #2a343a;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #c98344;} 50 | div.text_cell_render, div.output_html {color: #2a343a;} 51 | 52 | span.ansiblack {color: #1c3657;} 53 | span.ansiblue {color: #b02f30;} 54 | span.ansigray {color: #84898c;} 55 | span.ansigreen {color: #237986;} 56 | span.ansipurple {color: #c59820;} 57 | span.ansired {color: #2a5491;} 58 | span.ansiyellow {color: #a03b1e;} 59 | 60 | div.output_stderr {background-color: #2a5491;} 61 | div.output_stderr pre {color: #a7cfa3;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #b5d8f6; color: #1c3657;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #a7cfa3 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #b5d8f6; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #84898c;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #3f4944 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #c98344;} 70 | .cm-s-ipython span.cm-atom {color: #c59820;} 71 | .cm-s-ipython span.cm-number {color: #c59820;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #237986;} 74 | .cm-s-ipython span.cm-keyword {color: #2a5491;} 75 | .cm-s-ipython span.cm-string {color: #a03b1e;} 76 | .cm-s-ipython span.cm-operator {color: #c98344;} 77 | .cm-s-ipython span.cm-builtin {color: #c59820;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #237986;} 80 | .cm-s-ipython span.cm-variable-2 {color: #484d79;} 81 | .cm-s-ipython span.cm-def {color: #43820d;} 82 | .cm-s-ipython span.cm-error {background: #2a5491; color: #3f4944;} 83 | .cm-s-ipython span.cm-bracket {color: #2a343a;} 84 | .cm-s-ipython span.cm-tag {color: #2a5491;} 85 | .cm-s-ipython span.cm-link {color: #c59820;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #1c3657 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-hopscotch-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Hopscotch Dark 4 | Author: Jan T. Sott 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #322931;} 20 | a {color: #1290bf;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #d5d3d5;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #b33508;} 33 | div.output_prompt {color: #c85e7c;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #5c545b; 37 | } 38 | div.output_area pre {font-weight: normal; color: #b9b5b8;} 39 | div.output_subarea {font-weight: normal; color: #b9b5b8;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #b9b5b8 solid; 43 | color: #b9b5b8; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #b9b5b8;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #c85e7c;} 50 | div.text_cell_render, div.output_html {color: #b9b5b8;} 51 | 52 | span.ansiblack {color: #433b42;} 53 | span.ansiblue {color: #149b93;} 54 | span.ansigray {color: #989498;} 55 | span.ansigreen {color: #8fc13e;} 56 | span.ansipurple {color: #c85e7c;} 57 | span.ansired {color: #dd464c;} 58 | span.ansiyellow {color: #fdcc59;} 59 | 60 | div.output_stderr {background-color: #dd464c;} 61 | div.output_stderr pre {color: #d5d3d5;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #322931; color: #d5d3d5;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #433b42 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #322931; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #797379;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #989498 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #b33508;} 70 | .cm-s-ipython span.cm-atom {color: #c85e7c;} 71 | .cm-s-ipython span.cm-number {color: #c85e7c;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #8fc13e;} 74 | .cm-s-ipython span.cm-keyword {color: #dd464c;} 75 | .cm-s-ipython span.cm-string {color: #fdcc59;} 76 | .cm-s-ipython span.cm-operator {color: #b33508;} 77 | .cm-s-ipython span.cm-builtin {color: #c85e7c;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #8fc13e;} 80 | .cm-s-ipython span.cm-variable-2 {color: #1290bf;} 81 | .cm-s-ipython span.cm-def {color: #fd8b19;} 82 | .cm-s-ipython span.cm-error {background: #dd464c; color: #989498;} 83 | .cm-s-ipython span.cm-bracket {color: #b9b5b8;} 84 | .cm-s-ipython span.cm-tag {color: #dd464c;} 85 | .cm-s-ipython span.cm-link {color: #c85e7c;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #d5d3d5 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-hopscotch-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Hopscotch Light 4 | Author: Jan T. Sott 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #ffffff;} 20 | a {color: #1290bf;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #433b42;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #c85e7c;} 33 | div.output_prompt {color: #b33508;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #b9b5b8; 37 | } 38 | div.output_area pre {font-weight: normal; color: #5c545b;} 39 | div.output_subarea {font-weight: normal; color: #5c545b;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #797379 solid; 43 | color: #797379; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #5c545b;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #b33508;} 50 | div.text_cell_render, div.output_html {color: #5c545b;} 51 | 52 | span.ansiblack {color: #433b42;} 53 | span.ansiblue {color: #149b93;} 54 | span.ansigray {color: #989498;} 55 | span.ansigreen {color: #8fc13e;} 56 | span.ansipurple {color: #c85e7c;} 57 | span.ansired {color: #dd464c;} 58 | span.ansiyellow {color: #fdcc59;} 59 | 60 | div.output_stderr {background-color: #dd464c;} 61 | div.output_stderr pre {color: #d5d3d5;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #ffffff; color: #433b42;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #d5d3d5 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #ffffff; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #989498;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #797379 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #b33508;} 70 | .cm-s-ipython span.cm-atom {color: #c85e7c;} 71 | .cm-s-ipython span.cm-number {color: #c85e7c;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #8fc13e;} 74 | .cm-s-ipython span.cm-keyword {color: #dd464c;} 75 | .cm-s-ipython span.cm-string {color: #fdcc59;} 76 | .cm-s-ipython span.cm-operator {color: #b33508;} 77 | .cm-s-ipython span.cm-builtin {color: #c85e7c;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #8fc13e;} 80 | .cm-s-ipython span.cm-variable-2 {color: #1290bf;} 81 | .cm-s-ipython span.cm-def {color: #fd8b19;} 82 | .cm-s-ipython span.cm-error {background: #dd464c; color: #797379;} 83 | .cm-s-ipython span.cm-bracket {color: #5c545b;} 84 | .cm-s-ipython span.cm-tag {color: #dd464c;} 85 | .cm-s-ipython span.cm-link {color: #c85e7c;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #433b42 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-londontube-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 London Tube Dark 4 | Author: Jan T. Sott 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #231f20;} 20 | a {color: #009ddc;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #e7e7e8;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #b06110;} 33 | div.output_prompt {color: #98005d;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #5a5758; 37 | } 38 | div.output_area pre {font-weight: normal; color: #d9d8d8;} 39 | div.output_subarea {font-weight: normal; color: #d9d8d8;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #d9d8d8 solid; 43 | color: #d9d8d8; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #d9d8d8;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #98005d;} 50 | div.text_cell_render, div.output_html {color: #d9d8d8;} 51 | 52 | span.ansiblack {color: #1c3f95;} 53 | span.ansiblue {color: #85cebc;} 54 | span.ansigray {color: #959ca1;} 55 | span.ansigreen {color: #00853e;} 56 | span.ansipurple {color: #98005d;} 57 | span.ansired {color: #ee2e24;} 58 | span.ansiyellow {color: #ffd204;} 59 | 60 | div.output_stderr {background-color: #ee2e24;} 61 | div.output_stderr pre {color: #e7e7e8;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #231f20; color: #e7e7e8;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #1c3f95 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #231f20; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #737171;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #959ca1 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #b06110;} 70 | .cm-s-ipython span.cm-atom {color: #98005d;} 71 | .cm-s-ipython span.cm-number {color: #98005d;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #00853e;} 74 | .cm-s-ipython span.cm-keyword {color: #ee2e24;} 75 | .cm-s-ipython span.cm-string {color: #ffd204;} 76 | .cm-s-ipython span.cm-operator {color: #b06110;} 77 | .cm-s-ipython span.cm-builtin {color: #98005d;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #00853e;} 80 | .cm-s-ipython span.cm-variable-2 {color: #009ddc;} 81 | .cm-s-ipython span.cm-def {color: #f386a1;} 82 | .cm-s-ipython span.cm-error {background: #ee2e24; color: #959ca1;} 83 | .cm-s-ipython span.cm-bracket {color: #d9d8d8;} 84 | .cm-s-ipython span.cm-tag {color: #ee2e24;} 85 | .cm-s-ipython span.cm-link {color: #98005d;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #e7e7e8 !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-codeschool-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Codeschool Dark 4 | Author: brettof86 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #232c31;} 20 | a {color: #484d79;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #a7cfa3;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #c98344;} 33 | div.output_prompt {color: #c59820;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #2a343a; 37 | } 38 | div.output_area pre {font-weight: normal; color: #9ea7a6;} 39 | div.output_subarea {font-weight: normal; color: #9ea7a6;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #9ea7a6 solid; 43 | color: #9ea7a6; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #9ea7a6;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #c59820;} 50 | div.text_cell_render, div.output_html {color: #9ea7a6;} 51 | 52 | span.ansiblack {color: #1c3657;} 53 | span.ansiblue {color: #b02f30;} 54 | span.ansigray {color: #84898c;} 55 | span.ansigreen {color: #237986;} 56 | span.ansipurple {color: #c59820;} 57 | span.ansired {color: #2a5491;} 58 | span.ansiyellow {color: #a03b1e;} 59 | 60 | div.output_stderr {background-color: #2a5491;} 61 | div.output_stderr pre {color: #a7cfa3;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #232c31; color: #a7cfa3;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #1c3657 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #232c31; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #3f4944;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #84898c !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #c98344;} 70 | .cm-s-ipython span.cm-atom {color: #c59820;} 71 | .cm-s-ipython span.cm-number {color: #c59820;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #237986;} 74 | .cm-s-ipython span.cm-keyword {color: #2a5491;} 75 | .cm-s-ipython span.cm-string {color: #a03b1e;} 76 | .cm-s-ipython span.cm-operator {color: #c98344;} 77 | .cm-s-ipython span.cm-builtin {color: #c59820;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #237986;} 80 | .cm-s-ipython span.cm-variable-2 {color: #484d79;} 81 | .cm-s-ipython span.cm-def {color: #43820d;} 82 | .cm-s-ipython span.cm-error {background: #2a5491; color: #84898c;} 83 | .cm-s-ipython span.cm-bracket {color: #9ea7a6;} 84 | .cm-s-ipython span.cm-tag {color: #2a5491;} 85 | .cm-s-ipython span.cm-link {color: #c59820;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #a7cfa3 !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-codeschool-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Codeschool Light 4 | Author: brettof86 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #b5d8f6;} 20 | a {color: #484d79;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #1c3657;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #c59820;} 33 | div.output_prompt {color: #c98344;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #9ea7a6; 37 | } 38 | div.output_area pre {font-weight: normal; color: #2a343a;} 39 | div.output_subarea {font-weight: normal; color: #2a343a;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #3f4944 solid; 43 | color: #3f4944; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #2a343a;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #c98344;} 50 | div.text_cell_render, div.output_html {color: #2a343a;} 51 | 52 | span.ansiblack {color: #1c3657;} 53 | span.ansiblue {color: #b02f30;} 54 | span.ansigray {color: #84898c;} 55 | span.ansigreen {color: #237986;} 56 | span.ansipurple {color: #c59820;} 57 | span.ansired {color: #2a5491;} 58 | span.ansiyellow {color: #a03b1e;} 59 | 60 | div.output_stderr {background-color: #2a5491;} 61 | div.output_stderr pre {color: #a7cfa3;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #b5d8f6; color: #1c3657;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #a7cfa3 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #b5d8f6; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #84898c;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #3f4944 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #c98344;} 70 | .cm-s-ipython span.cm-atom {color: #c59820;} 71 | .cm-s-ipython span.cm-number {color: #c59820;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #237986;} 74 | .cm-s-ipython span.cm-keyword {color: #2a5491;} 75 | .cm-s-ipython span.cm-string {color: #a03b1e;} 76 | .cm-s-ipython span.cm-operator {color: #c98344;} 77 | .cm-s-ipython span.cm-builtin {color: #c59820;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #237986;} 80 | .cm-s-ipython span.cm-variable-2 {color: #484d79;} 81 | .cm-s-ipython span.cm-def {color: #43820d;} 82 | .cm-s-ipython span.cm-error {background: #2a5491; color: #3f4944;} 83 | .cm-s-ipython span.cm-bracket {color: #2a343a;} 84 | .cm-s-ipython span.cm-tag {color: #2a5491;} 85 | .cm-s-ipython span.cm-link {color: #c59820;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #1c3657 !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-hopscotch-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Hopscotch Dark 4 | Author: Jan T. Sott 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #322931;} 20 | a {color: #1290bf;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #d5d3d5;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #b33508;} 33 | div.output_prompt {color: #c85e7c;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #5c545b; 37 | } 38 | div.output_area pre {font-weight: normal; color: #b9b5b8;} 39 | div.output_subarea {font-weight: normal; color: #b9b5b8;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #b9b5b8 solid; 43 | color: #b9b5b8; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #b9b5b8;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #c85e7c;} 50 | div.text_cell_render, div.output_html {color: #b9b5b8;} 51 | 52 | span.ansiblack {color: #433b42;} 53 | span.ansiblue {color: #149b93;} 54 | span.ansigray {color: #989498;} 55 | span.ansigreen {color: #8fc13e;} 56 | span.ansipurple {color: #c85e7c;} 57 | span.ansired {color: #dd464c;} 58 | span.ansiyellow {color: #fdcc59;} 59 | 60 | div.output_stderr {background-color: #dd464c;} 61 | div.output_stderr pre {color: #d5d3d5;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #322931; color: #d5d3d5;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #433b42 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #322931; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #797379;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #989498 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #b33508;} 70 | .cm-s-ipython span.cm-atom {color: #c85e7c;} 71 | .cm-s-ipython span.cm-number {color: #c85e7c;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #8fc13e;} 74 | .cm-s-ipython span.cm-keyword {color: #dd464c;} 75 | .cm-s-ipython span.cm-string {color: #fdcc59;} 76 | .cm-s-ipython span.cm-operator {color: #b33508;} 77 | .cm-s-ipython span.cm-builtin {color: #c85e7c;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #8fc13e;} 80 | .cm-s-ipython span.cm-variable-2 {color: #1290bf;} 81 | .cm-s-ipython span.cm-def {color: #fd8b19;} 82 | .cm-s-ipython span.cm-error {background: #dd464c; color: #989498;} 83 | .cm-s-ipython span.cm-bracket {color: #b9b5b8;} 84 | .cm-s-ipython span.cm-tag {color: #dd464c;} 85 | .cm-s-ipython span.cm-link {color: #c85e7c;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #d5d3d5 !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-hopscotch-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Hopscotch Light 4 | Author: Jan T. Sott 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #ffffff;} 20 | a {color: #1290bf;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #433b42;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #c85e7c;} 33 | div.output_prompt {color: #b33508;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #b9b5b8; 37 | } 38 | div.output_area pre {font-weight: normal; color: #5c545b;} 39 | div.output_subarea {font-weight: normal; color: #5c545b;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #797379 solid; 43 | color: #797379; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #5c545b;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #b33508;} 50 | div.text_cell_render, div.output_html {color: #5c545b;} 51 | 52 | span.ansiblack {color: #433b42;} 53 | span.ansiblue {color: #149b93;} 54 | span.ansigray {color: #989498;} 55 | span.ansigreen {color: #8fc13e;} 56 | span.ansipurple {color: #c85e7c;} 57 | span.ansired {color: #dd464c;} 58 | span.ansiyellow {color: #fdcc59;} 59 | 60 | div.output_stderr {background-color: #dd464c;} 61 | div.output_stderr pre {color: #d5d3d5;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #ffffff; color: #433b42;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #d5d3d5 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #ffffff; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #989498;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #797379 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #b33508;} 70 | .cm-s-ipython span.cm-atom {color: #c85e7c;} 71 | .cm-s-ipython span.cm-number {color: #c85e7c;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #8fc13e;} 74 | .cm-s-ipython span.cm-keyword {color: #dd464c;} 75 | .cm-s-ipython span.cm-string {color: #fdcc59;} 76 | .cm-s-ipython span.cm-operator {color: #b33508;} 77 | .cm-s-ipython span.cm-builtin {color: #c85e7c;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #8fc13e;} 80 | .cm-s-ipython span.cm-variable-2 {color: #1290bf;} 81 | .cm-s-ipython span.cm-def {color: #fd8b19;} 82 | .cm-s-ipython span.cm-error {background: #dd464c; color: #797379;} 83 | .cm-s-ipython span.cm-bracket {color: #5c545b;} 84 | .cm-s-ipython span.cm-tag {color: #dd464c;} 85 | .cm-s-ipython span.cm-link {color: #c85e7c;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #433b42 !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-londontube-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 London Tube Dark 4 | Author: Jan T. Sott 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #231f20;} 20 | a {color: #009ddc;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #e7e7e8;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #b06110;} 33 | div.output_prompt {color: #98005d;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #5a5758; 37 | } 38 | div.output_area pre {font-weight: normal; color: #d9d8d8;} 39 | div.output_subarea {font-weight: normal; color: #d9d8d8;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #d9d8d8 solid; 43 | color: #d9d8d8; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #d9d8d8;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #98005d;} 50 | div.text_cell_render, div.output_html {color: #d9d8d8;} 51 | 52 | span.ansiblack {color: #1c3f95;} 53 | span.ansiblue {color: #85cebc;} 54 | span.ansigray {color: #959ca1;} 55 | span.ansigreen {color: #00853e;} 56 | span.ansipurple {color: #98005d;} 57 | span.ansired {color: #ee2e24;} 58 | span.ansiyellow {color: #ffd204;} 59 | 60 | div.output_stderr {background-color: #ee2e24;} 61 | div.output_stderr pre {color: #e7e7e8;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #231f20; color: #e7e7e8;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #1c3f95 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #231f20; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #737171;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #959ca1 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #b06110;} 70 | .cm-s-ipython span.cm-atom {color: #98005d;} 71 | .cm-s-ipython span.cm-number {color: #98005d;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #00853e;} 74 | .cm-s-ipython span.cm-keyword {color: #ee2e24;} 75 | .cm-s-ipython span.cm-string {color: #ffd204;} 76 | .cm-s-ipython span.cm-operator {color: #b06110;} 77 | .cm-s-ipython span.cm-builtin {color: #98005d;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #00853e;} 80 | .cm-s-ipython span.cm-variable-2 {color: #009ddc;} 81 | .cm-s-ipython span.cm-def {color: #f386a1;} 82 | .cm-s-ipython span.cm-error {background: #ee2e24; color: #959ca1;} 83 | .cm-s-ipython span.cm-bracket {color: #d9d8d8;} 84 | .cm-s-ipython span.cm-tag {color: #ee2e24;} 85 | .cm-s-ipython span.cm-link {color: #98005d;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #e7e7e8 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-colors-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Colors Dark 4 | Author: mrmrs (http://clrs.cc) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #111111;} 20 | a {color: #0074d9;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #dddddd;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #85144b;} 33 | div.output_prompt {color: #b10dc9;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #555555; 37 | } 38 | div.output_area pre {font-weight: normal; color: #bbbbbb;} 39 | div.output_subarea {font-weight: normal; color: #bbbbbb;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #bbbbbb solid; 43 | color: #bbbbbb; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #bbbbbb;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #b10dc9;} 50 | div.text_cell_render, div.output_html {color: #bbbbbb;} 51 | 52 | span.ansiblack {color: #333333;} 53 | span.ansiblue {color: #7fdbff;} 54 | span.ansigray {color: #999999;} 55 | span.ansigreen {color: #2ecc40;} 56 | span.ansipurple {color: #b10dc9;} 57 | span.ansired {color: #ff4136;} 58 | span.ansiyellow {color: #ffdc00;} 59 | 60 | div.output_stderr {background-color: #ff4136;} 61 | div.output_stderr pre {color: #dddddd;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #111111; color: #dddddd;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #333333 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #111111; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #777777;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #999999 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #85144b;} 70 | .cm-s-ipython span.cm-atom {color: #b10dc9;} 71 | .cm-s-ipython span.cm-number {color: #b10dc9;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #2ecc40;} 74 | .cm-s-ipython span.cm-keyword {color: #ff4136;} 75 | .cm-s-ipython span.cm-string {color: #ffdc00;} 76 | .cm-s-ipython span.cm-operator {color: #85144b;} 77 | .cm-s-ipython span.cm-builtin {color: #b10dc9;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #2ecc40;} 80 | .cm-s-ipython span.cm-variable-2 {color: #0074d9;} 81 | .cm-s-ipython span.cm-def {color: #ff851b;} 82 | .cm-s-ipython span.cm-error {background: #ff4136; color: #999999;} 83 | .cm-s-ipython span.cm-bracket {color: #bbbbbb;} 84 | .cm-s-ipython span.cm-tag {color: #ff4136;} 85 | .cm-s-ipython span.cm-link {color: #b10dc9;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #dddddd !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-colors-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Colors Light 4 | Author: mrmrs (http://clrs.cc) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #ffffff;} 20 | a {color: #0074d9;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #333333;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #b10dc9;} 33 | div.output_prompt {color: #85144b;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #bbbbbb; 37 | } 38 | div.output_area pre {font-weight: normal; color: #555555;} 39 | div.output_subarea {font-weight: normal; color: #555555;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #777777 solid; 43 | color: #777777; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #555555;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #85144b;} 50 | div.text_cell_render, div.output_html {color: #555555;} 51 | 52 | span.ansiblack {color: #333333;} 53 | span.ansiblue {color: #7fdbff;} 54 | span.ansigray {color: #999999;} 55 | span.ansigreen {color: #2ecc40;} 56 | span.ansipurple {color: #b10dc9;} 57 | span.ansired {color: #ff4136;} 58 | span.ansiyellow {color: #ffdc00;} 59 | 60 | div.output_stderr {background-color: #ff4136;} 61 | div.output_stderr pre {color: #dddddd;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #ffffff; color: #333333;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #dddddd !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #ffffff; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #999999;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #777777 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #85144b;} 70 | .cm-s-ipython span.cm-atom {color: #b10dc9;} 71 | .cm-s-ipython span.cm-number {color: #b10dc9;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #2ecc40;} 74 | .cm-s-ipython span.cm-keyword {color: #ff4136;} 75 | .cm-s-ipython span.cm-string {color: #ffdc00;} 76 | .cm-s-ipython span.cm-operator {color: #85144b;} 77 | .cm-s-ipython span.cm-builtin {color: #b10dc9;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #2ecc40;} 80 | .cm-s-ipython span.cm-variable-2 {color: #0074d9;} 81 | .cm-s-ipython span.cm-def {color: #ff851b;} 82 | .cm-s-ipython span.cm-error {background: #ff4136; color: #777777;} 83 | .cm-s-ipython span.cm-bracket {color: #555555;} 84 | .cm-s-ipython span.cm-tag {color: #ff4136;} 85 | .cm-s-ipython span.cm-link {color: #b10dc9;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #333333 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-londontube-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 London Tube Light 4 | Author: Jan T. Sott 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #ffffff;} 20 | a {color: #009ddc;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #1c3f95;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #98005d;} 33 | div.output_prompt {color: #b06110;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #d9d8d8; 37 | } 38 | div.output_area pre {font-weight: normal; color: #5a5758;} 39 | div.output_subarea {font-weight: normal; color: #5a5758;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #737171 solid; 43 | color: #737171; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #5a5758;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #b06110;} 50 | div.text_cell_render, div.output_html {color: #5a5758;} 51 | 52 | span.ansiblack {color: #1c3f95;} 53 | span.ansiblue {color: #85cebc;} 54 | span.ansigray {color: #959ca1;} 55 | span.ansigreen {color: #00853e;} 56 | span.ansipurple {color: #98005d;} 57 | span.ansired {color: #ee2e24;} 58 | span.ansiyellow {color: #ffd204;} 59 | 60 | div.output_stderr {background-color: #ee2e24;} 61 | div.output_stderr pre {color: #e7e7e8;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #ffffff; color: #1c3f95;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #e7e7e8 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #ffffff; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #959ca1;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #737171 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #b06110;} 70 | .cm-s-ipython span.cm-atom {color: #98005d;} 71 | .cm-s-ipython span.cm-number {color: #98005d;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #00853e;} 74 | .cm-s-ipython span.cm-keyword {color: #ee2e24;} 75 | .cm-s-ipython span.cm-string {color: #ffd204;} 76 | .cm-s-ipython span.cm-operator {color: #b06110;} 77 | .cm-s-ipython span.cm-builtin {color: #98005d;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #00853e;} 80 | .cm-s-ipython span.cm-variable-2 {color: #009ddc;} 81 | .cm-s-ipython span.cm-def {color: #f386a1;} 82 | .cm-s-ipython span.cm-error {background: #ee2e24; color: #737171;} 83 | .cm-s-ipython span.cm-bracket {color: #5a5758;} 84 | .cm-s-ipython span.cm-tag {color: #ee2e24;} 85 | .cm-s-ipython span.cm-link {color: #98005d;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #1c3f95 !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-colors-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Colors Dark 4 | Author: mrmrs (http://clrs.cc) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #111111;} 20 | a {color: #0074d9;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #dddddd;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #85144b;} 33 | div.output_prompt {color: #b10dc9;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #555555; 37 | } 38 | div.output_area pre {font-weight: normal; color: #bbbbbb;} 39 | div.output_subarea {font-weight: normal; color: #bbbbbb;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #bbbbbb solid; 43 | color: #bbbbbb; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #bbbbbb;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #b10dc9;} 50 | div.text_cell_render, div.output_html {color: #bbbbbb;} 51 | 52 | span.ansiblack {color: #333333;} 53 | span.ansiblue {color: #7fdbff;} 54 | span.ansigray {color: #999999;} 55 | span.ansigreen {color: #2ecc40;} 56 | span.ansipurple {color: #b10dc9;} 57 | span.ansired {color: #ff4136;} 58 | span.ansiyellow {color: #ffdc00;} 59 | 60 | div.output_stderr {background-color: #ff4136;} 61 | div.output_stderr pre {color: #dddddd;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #111111; color: #dddddd;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #333333 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #111111; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #777777;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #999999 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #85144b;} 70 | .cm-s-ipython span.cm-atom {color: #b10dc9;} 71 | .cm-s-ipython span.cm-number {color: #b10dc9;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #2ecc40;} 74 | .cm-s-ipython span.cm-keyword {color: #ff4136;} 75 | .cm-s-ipython span.cm-string {color: #ffdc00;} 76 | .cm-s-ipython span.cm-operator {color: #85144b;} 77 | .cm-s-ipython span.cm-builtin {color: #b10dc9;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #2ecc40;} 80 | .cm-s-ipython span.cm-variable-2 {color: #0074d9;} 81 | .cm-s-ipython span.cm-def {color: #ff851b;} 82 | .cm-s-ipython span.cm-error {background: #ff4136; color: #999999;} 83 | .cm-s-ipython span.cm-bracket {color: #bbbbbb;} 84 | .cm-s-ipython span.cm-tag {color: #ff4136;} 85 | .cm-s-ipython span.cm-link {color: #b10dc9;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #dddddd !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-colors-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Colors Light 4 | Author: mrmrs (http://clrs.cc) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #ffffff;} 20 | a {color: #0074d9;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #333333;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #b10dc9;} 33 | div.output_prompt {color: #85144b;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #bbbbbb; 37 | } 38 | div.output_area pre {font-weight: normal; color: #555555;} 39 | div.output_subarea {font-weight: normal; color: #555555;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #777777 solid; 43 | color: #777777; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #555555;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #85144b;} 50 | div.text_cell_render, div.output_html {color: #555555;} 51 | 52 | span.ansiblack {color: #333333;} 53 | span.ansiblue {color: #7fdbff;} 54 | span.ansigray {color: #999999;} 55 | span.ansigreen {color: #2ecc40;} 56 | span.ansipurple {color: #b10dc9;} 57 | span.ansired {color: #ff4136;} 58 | span.ansiyellow {color: #ffdc00;} 59 | 60 | div.output_stderr {background-color: #ff4136;} 61 | div.output_stderr pre {color: #dddddd;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #ffffff; color: #333333;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #dddddd !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #ffffff; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #999999;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #777777 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #85144b;} 70 | .cm-s-ipython span.cm-atom {color: #b10dc9;} 71 | .cm-s-ipython span.cm-number {color: #b10dc9;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #2ecc40;} 74 | .cm-s-ipython span.cm-keyword {color: #ff4136;} 75 | .cm-s-ipython span.cm-string {color: #ffdc00;} 76 | .cm-s-ipython span.cm-operator {color: #85144b;} 77 | .cm-s-ipython span.cm-builtin {color: #b10dc9;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #2ecc40;} 80 | .cm-s-ipython span.cm-variable-2 {color: #0074d9;} 81 | .cm-s-ipython span.cm-def {color: #ff851b;} 82 | .cm-s-ipython span.cm-error {background: #ff4136; color: #777777;} 83 | .cm-s-ipython span.cm-bracket {color: #555555;} 84 | .cm-s-ipython span.cm-tag {color: #ff4136;} 85 | .cm-s-ipython span.cm-link {color: #b10dc9;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #333333 !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-londontube-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 London Tube Light 4 | Author: Jan T. Sott 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #ffffff;} 20 | a {color: #009ddc;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #1c3f95;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #98005d;} 33 | div.output_prompt {color: #b06110;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #d9d8d8; 37 | } 38 | div.output_area pre {font-weight: normal; color: #5a5758;} 39 | div.output_subarea {font-weight: normal; color: #5a5758;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #737171 solid; 43 | color: #737171; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #5a5758;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #b06110;} 50 | div.text_cell_render, div.output_html {color: #5a5758;} 51 | 52 | span.ansiblack {color: #1c3f95;} 53 | span.ansiblue {color: #85cebc;} 54 | span.ansigray {color: #959ca1;} 55 | span.ansigreen {color: #00853e;} 56 | span.ansipurple {color: #98005d;} 57 | span.ansired {color: #ee2e24;} 58 | span.ansiyellow {color: #ffd204;} 59 | 60 | div.output_stderr {background-color: #ee2e24;} 61 | div.output_stderr pre {color: #e7e7e8;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #ffffff; color: #1c3f95;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #e7e7e8 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #ffffff; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #959ca1;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #737171 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #b06110;} 70 | .cm-s-ipython span.cm-atom {color: #98005d;} 71 | .cm-s-ipython span.cm-number {color: #98005d;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #00853e;} 74 | .cm-s-ipython span.cm-keyword {color: #ee2e24;} 75 | .cm-s-ipython span.cm-string {color: #ffd204;} 76 | .cm-s-ipython span.cm-operator {color: #b06110;} 77 | .cm-s-ipython span.cm-builtin {color: #98005d;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #00853e;} 80 | .cm-s-ipython span.cm-variable-2 {color: #009ddc;} 81 | .cm-s-ipython span.cm-def {color: #f386a1;} 82 | .cm-s-ipython span.cm-error {background: #ee2e24; color: #737171;} 83 | .cm-s-ipython span.cm-bracket {color: #5a5758;} 84 | .cm-s-ipython span.cm-tag {color: #ee2e24;} 85 | .cm-s-ipython span.cm-link {color: #98005d;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #1c3f95 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-flat-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Flat Dark 4 | Author: Chris Kempson (http://chriskempson.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #2C3E50;} 20 | a {color: #3498DB;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #f5f5f5;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #be643c;} 33 | div.output_prompt {color: #9B59B6;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #7F8C8D; 37 | } 38 | div.output_area pre {font-weight: normal; color: #e0e0e0;} 39 | div.output_subarea {font-weight: normal; color: #e0e0e0;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #e0e0e0 solid; 43 | color: #e0e0e0; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #e0e0e0;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #9B59B6;} 50 | div.text_cell_render, div.output_html {color: #e0e0e0;} 51 | 52 | span.ansiblack {color: #34495E;} 53 | span.ansiblue {color: #1ABC9C;} 54 | span.ansigray {color: #BDC3C7;} 55 | span.ansigreen {color: #2ECC71;} 56 | span.ansipurple {color: #9B59B6;} 57 | span.ansired {color: #E74C3C;} 58 | span.ansiyellow {color: #F1C40F;} 59 | 60 | div.output_stderr {background-color: #E74C3C;} 61 | div.output_stderr pre {color: #f5f5f5;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #2C3E50; color: #f5f5f5;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #34495E !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #2C3E50; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #95A5A6;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #BDC3C7 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #be643c;} 70 | .cm-s-ipython span.cm-atom {color: #9B59B6;} 71 | .cm-s-ipython span.cm-number {color: #9B59B6;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #2ECC71;} 74 | .cm-s-ipython span.cm-keyword {color: #E74C3C;} 75 | .cm-s-ipython span.cm-string {color: #F1C40F;} 76 | .cm-s-ipython span.cm-operator {color: #be643c;} 77 | .cm-s-ipython span.cm-builtin {color: #9B59B6;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #2ECC71;} 80 | .cm-s-ipython span.cm-variable-2 {color: #3498DB;} 81 | .cm-s-ipython span.cm-def {color: #E67E22;} 82 | .cm-s-ipython span.cm-error {background: #E74C3C; color: #BDC3C7;} 83 | .cm-s-ipython span.cm-bracket {color: #e0e0e0;} 84 | .cm-s-ipython span.cm-tag {color: #E74C3C;} 85 | .cm-s-ipython span.cm-link {color: #9B59B6;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #f5f5f5 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-pop-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Pop Dark 4 | Author: Chris Kempson (http://chriskempson.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #000000;} 20 | a {color: #0e5a94;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #e0e0e0;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #7a2d00;} 33 | div.output_prompt {color: #b31e8d;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #303030; 37 | } 38 | div.output_area pre {font-weight: normal; color: #d0d0d0;} 39 | div.output_subarea {font-weight: normal; color: #d0d0d0;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #d0d0d0 solid; 43 | color: #d0d0d0; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #d0d0d0;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #b31e8d;} 50 | div.text_cell_render, div.output_html {color: #d0d0d0;} 51 | 52 | span.ansiblack {color: #202020;} 53 | span.ansiblue {color: #00aabb;} 54 | span.ansigray {color: #b0b0b0;} 55 | span.ansigreen {color: #37b349;} 56 | span.ansipurple {color: #b31e8d;} 57 | span.ansired {color: #eb008a;} 58 | span.ansiyellow {color: #f8ca12;} 59 | 60 | div.output_stderr {background-color: #eb008a;} 61 | div.output_stderr pre {color: #e0e0e0;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #000000; color: #e0e0e0;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #202020 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #000000; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #505050;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #b0b0b0 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #7a2d00;} 70 | .cm-s-ipython span.cm-atom {color: #b31e8d;} 71 | .cm-s-ipython span.cm-number {color: #b31e8d;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #37b349;} 74 | .cm-s-ipython span.cm-keyword {color: #eb008a;} 75 | .cm-s-ipython span.cm-string {color: #f8ca12;} 76 | .cm-s-ipython span.cm-operator {color: #7a2d00;} 77 | .cm-s-ipython span.cm-builtin {color: #b31e8d;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #37b349;} 80 | .cm-s-ipython span.cm-variable-2 {color: #0e5a94;} 81 | .cm-s-ipython span.cm-def {color: #f29333;} 82 | .cm-s-ipython span.cm-error {background: #eb008a; color: #b0b0b0;} 83 | .cm-s-ipython span.cm-bracket {color: #d0d0d0;} 84 | .cm-s-ipython span.cm-tag {color: #eb008a;} 85 | .cm-s-ipython span.cm-link {color: #b31e8d;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #e0e0e0 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-pop-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Pop Light 4 | Author: Chris Kempson (http://chriskempson.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #ffffff;} 20 | a {color: #0e5a94;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #202020;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #b31e8d;} 33 | div.output_prompt {color: #7a2d00;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #d0d0d0; 37 | } 38 | div.output_area pre {font-weight: normal; color: #303030;} 39 | div.output_subarea {font-weight: normal; color: #303030;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #505050 solid; 43 | color: #505050; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #303030;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #7a2d00;} 50 | div.text_cell_render, div.output_html {color: #303030;} 51 | 52 | span.ansiblack {color: #202020;} 53 | span.ansiblue {color: #00aabb;} 54 | span.ansigray {color: #b0b0b0;} 55 | span.ansigreen {color: #37b349;} 56 | span.ansipurple {color: #b31e8d;} 57 | span.ansired {color: #eb008a;} 58 | span.ansiyellow {color: #f8ca12;} 59 | 60 | div.output_stderr {background-color: #eb008a;} 61 | div.output_stderr pre {color: #e0e0e0;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #ffffff; color: #202020;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #e0e0e0 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #ffffff; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #b0b0b0;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #505050 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #7a2d00;} 70 | .cm-s-ipython span.cm-atom {color: #b31e8d;} 71 | .cm-s-ipython span.cm-number {color: #b31e8d;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #37b349;} 74 | .cm-s-ipython span.cm-keyword {color: #eb008a;} 75 | .cm-s-ipython span.cm-string {color: #f8ca12;} 76 | .cm-s-ipython span.cm-operator {color: #7a2d00;} 77 | .cm-s-ipython span.cm-builtin {color: #b31e8d;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #37b349;} 80 | .cm-s-ipython span.cm-variable-2 {color: #0e5a94;} 81 | .cm-s-ipython span.cm-def {color: #f29333;} 82 | .cm-s-ipython span.cm-error {background: #eb008a; color: #505050;} 83 | .cm-s-ipython span.cm-bracket {color: #303030;} 84 | .cm-s-ipython span.cm-tag {color: #eb008a;} 85 | .cm-s-ipython span.cm-link {color: #b31e8d;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #202020 !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-flat-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Flat Dark 4 | Author: Chris Kempson (http://chriskempson.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #2C3E50;} 20 | a {color: #3498DB;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #f5f5f5;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #be643c;} 33 | div.output_prompt {color: #9B59B6;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #7F8C8D; 37 | } 38 | div.output_area pre {font-weight: normal; color: #e0e0e0;} 39 | div.output_subarea {font-weight: normal; color: #e0e0e0;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #e0e0e0 solid; 43 | color: #e0e0e0; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #e0e0e0;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #9B59B6;} 50 | div.text_cell_render, div.output_html {color: #e0e0e0;} 51 | 52 | span.ansiblack {color: #34495E;} 53 | span.ansiblue {color: #1ABC9C;} 54 | span.ansigray {color: #BDC3C7;} 55 | span.ansigreen {color: #2ECC71;} 56 | span.ansipurple {color: #9B59B6;} 57 | span.ansired {color: #E74C3C;} 58 | span.ansiyellow {color: #F1C40F;} 59 | 60 | div.output_stderr {background-color: #E74C3C;} 61 | div.output_stderr pre {color: #f5f5f5;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #2C3E50; color: #f5f5f5;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #34495E !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #2C3E50; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #95A5A6;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #BDC3C7 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #be643c;} 70 | .cm-s-ipython span.cm-atom {color: #9B59B6;} 71 | .cm-s-ipython span.cm-number {color: #9B59B6;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #2ECC71;} 74 | .cm-s-ipython span.cm-keyword {color: #E74C3C;} 75 | .cm-s-ipython span.cm-string {color: #F1C40F;} 76 | .cm-s-ipython span.cm-operator {color: #be643c;} 77 | .cm-s-ipython span.cm-builtin {color: #9B59B6;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #2ECC71;} 80 | .cm-s-ipython span.cm-variable-2 {color: #3498DB;} 81 | .cm-s-ipython span.cm-def {color: #E67E22;} 82 | .cm-s-ipython span.cm-error {background: #E74C3C; color: #BDC3C7;} 83 | .cm-s-ipython span.cm-bracket {color: #e0e0e0;} 84 | .cm-s-ipython span.cm-tag {color: #E74C3C;} 85 | .cm-s-ipython span.cm-link {color: #9B59B6;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #f5f5f5 !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-pop-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Pop Dark 4 | Author: Chris Kempson (http://chriskempson.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #000000;} 20 | a {color: #0e5a94;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #e0e0e0;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #7a2d00;} 33 | div.output_prompt {color: #b31e8d;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #303030; 37 | } 38 | div.output_area pre {font-weight: normal; color: #d0d0d0;} 39 | div.output_subarea {font-weight: normal; color: #d0d0d0;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #d0d0d0 solid; 43 | color: #d0d0d0; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #d0d0d0;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #b31e8d;} 50 | div.text_cell_render, div.output_html {color: #d0d0d0;} 51 | 52 | span.ansiblack {color: #202020;} 53 | span.ansiblue {color: #00aabb;} 54 | span.ansigray {color: #b0b0b0;} 55 | span.ansigreen {color: #37b349;} 56 | span.ansipurple {color: #b31e8d;} 57 | span.ansired {color: #eb008a;} 58 | span.ansiyellow {color: #f8ca12;} 59 | 60 | div.output_stderr {background-color: #eb008a;} 61 | div.output_stderr pre {color: #e0e0e0;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #000000; color: #e0e0e0;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #202020 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #000000; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #505050;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #b0b0b0 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #7a2d00;} 70 | .cm-s-ipython span.cm-atom {color: #b31e8d;} 71 | .cm-s-ipython span.cm-number {color: #b31e8d;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #37b349;} 74 | .cm-s-ipython span.cm-keyword {color: #eb008a;} 75 | .cm-s-ipython span.cm-string {color: #f8ca12;} 76 | .cm-s-ipython span.cm-operator {color: #7a2d00;} 77 | .cm-s-ipython span.cm-builtin {color: #b31e8d;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #37b349;} 80 | .cm-s-ipython span.cm-variable-2 {color: #0e5a94;} 81 | .cm-s-ipython span.cm-def {color: #f29333;} 82 | .cm-s-ipython span.cm-error {background: #eb008a; color: #b0b0b0;} 83 | .cm-s-ipython span.cm-bracket {color: #d0d0d0;} 84 | .cm-s-ipython span.cm-tag {color: #eb008a;} 85 | .cm-s-ipython span.cm-link {color: #b31e8d;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #e0e0e0 !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-pop-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Pop Light 4 | Author: Chris Kempson (http://chriskempson.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #ffffff;} 20 | a {color: #0e5a94;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #202020;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #b31e8d;} 33 | div.output_prompt {color: #7a2d00;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #d0d0d0; 37 | } 38 | div.output_area pre {font-weight: normal; color: #303030;} 39 | div.output_subarea {font-weight: normal; color: #303030;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #505050 solid; 43 | color: #505050; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #303030;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #7a2d00;} 50 | div.text_cell_render, div.output_html {color: #303030;} 51 | 52 | span.ansiblack {color: #202020;} 53 | span.ansiblue {color: #00aabb;} 54 | span.ansigray {color: #b0b0b0;} 55 | span.ansigreen {color: #37b349;} 56 | span.ansipurple {color: #b31e8d;} 57 | span.ansired {color: #eb008a;} 58 | span.ansiyellow {color: #f8ca12;} 59 | 60 | div.output_stderr {background-color: #eb008a;} 61 | div.output_stderr pre {color: #e0e0e0;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #ffffff; color: #202020;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #e0e0e0 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #ffffff; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #b0b0b0;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #505050 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #7a2d00;} 70 | .cm-s-ipython span.cm-atom {color: #b31e8d;} 71 | .cm-s-ipython span.cm-number {color: #b31e8d;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #37b349;} 74 | .cm-s-ipython span.cm-keyword {color: #eb008a;} 75 | .cm-s-ipython span.cm-string {color: #f8ca12;} 76 | .cm-s-ipython span.cm-operator {color: #7a2d00;} 77 | .cm-s-ipython span.cm-builtin {color: #b31e8d;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #37b349;} 80 | .cm-s-ipython span.cm-variable-2 {color: #0e5a94;} 81 | .cm-s-ipython span.cm-def {color: #f29333;} 82 | .cm-s-ipython span.cm-error {background: #eb008a; color: #505050;} 83 | .cm-s-ipython span.cm-bracket {color: #303030;} 84 | .cm-s-ipython span.cm-tag {color: #eb008a;} 85 | .cm-s-ipython span.cm-link {color: #b31e8d;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #202020 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-3024-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 3024 Dark 4 | Author: Jan T. Sott (http://github.com/idleberg) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #090300;} 20 | a {color: #01a0e4;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #d6d5d4;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #cdab53;} 33 | div.output_prompt {color: #a16a94;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #4a4543; 37 | } 38 | div.output_area pre {font-weight: normal; color: #a5a2a2;} 39 | div.output_subarea {font-weight: normal; color: #a5a2a2;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #a5a2a2 solid; 43 | color: #a5a2a2; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #a5a2a2;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #a16a94;} 50 | div.text_cell_render, div.output_html {color: #a5a2a2;} 51 | 52 | span.ansiblack {color: #3a3432;} 53 | span.ansiblue {color: #b5e4f4;} 54 | span.ansigray {color: #807d7c;} 55 | span.ansigreen {color: #01a252;} 56 | span.ansipurple {color: #a16a94;} 57 | span.ansired {color: #db2d20;} 58 | span.ansiyellow {color: #fded02;} 59 | 60 | div.output_stderr {background-color: #db2d20;} 61 | div.output_stderr pre {color: #d6d5d4;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #090300; color: #d6d5d4;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #3a3432 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #090300; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #5c5855;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #807d7c !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #cdab53;} 70 | .cm-s-ipython span.cm-atom {color: #a16a94;} 71 | .cm-s-ipython span.cm-number {color: #a16a94;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #01a252;} 74 | .cm-s-ipython span.cm-keyword {color: #db2d20;} 75 | .cm-s-ipython span.cm-string {color: #fded02;} 76 | .cm-s-ipython span.cm-operator {color: #cdab53;} 77 | .cm-s-ipython span.cm-builtin {color: #a16a94;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #01a252;} 80 | .cm-s-ipython span.cm-variable-2 {color: #01a0e4;} 81 | .cm-s-ipython span.cm-def {color: #e8bbd0;} 82 | .cm-s-ipython span.cm-error {background: #db2d20; color: #807d7c;} 83 | .cm-s-ipython span.cm-bracket {color: #a5a2a2;} 84 | .cm-s-ipython span.cm-tag {color: #db2d20;} 85 | .cm-s-ipython span.cm-link {color: #a16a94;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #d6d5d4 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-3024-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 3024 Light 4 | Author: Jan T. Sott (http://github.com/idleberg) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #f7f7f7;} 20 | a {color: #01a0e4;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #3a3432;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #a16a94;} 33 | div.output_prompt {color: #cdab53;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #a5a2a2; 37 | } 38 | div.output_area pre {font-weight: normal; color: #4a4543;} 39 | div.output_subarea {font-weight: normal; color: #4a4543;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #5c5855 solid; 43 | color: #5c5855; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #4a4543;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #cdab53;} 50 | div.text_cell_render, div.output_html {color: #4a4543;} 51 | 52 | span.ansiblack {color: #3a3432;} 53 | span.ansiblue {color: #b5e4f4;} 54 | span.ansigray {color: #807d7c;} 55 | span.ansigreen {color: #01a252;} 56 | span.ansipurple {color: #a16a94;} 57 | span.ansired {color: #db2d20;} 58 | span.ansiyellow {color: #fded02;} 59 | 60 | div.output_stderr {background-color: #db2d20;} 61 | div.output_stderr pre {color: #d6d5d4;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #f7f7f7; color: #3a3432;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #d6d5d4 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #f7f7f7; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #807d7c;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #5c5855 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #cdab53;} 70 | .cm-s-ipython span.cm-atom {color: #a16a94;} 71 | .cm-s-ipython span.cm-number {color: #a16a94;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #01a252;} 74 | .cm-s-ipython span.cm-keyword {color: #db2d20;} 75 | .cm-s-ipython span.cm-string {color: #fded02;} 76 | .cm-s-ipython span.cm-operator {color: #cdab53;} 77 | .cm-s-ipython span.cm-builtin {color: #a16a94;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #01a252;} 80 | .cm-s-ipython span.cm-variable-2 {color: #01a0e4;} 81 | .cm-s-ipython span.cm-def {color: #e8bbd0;} 82 | .cm-s-ipython span.cm-error {background: #db2d20; color: #5c5855;} 83 | .cm-s-ipython span.cm-bracket {color: #4a4543;} 84 | .cm-s-ipython span.cm-tag {color: #db2d20;} 85 | .cm-s-ipython span.cm-link {color: #a16a94;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #3a3432 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-bright-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Bright Dark 4 | Author: Chris Kempson (http://chriskempson.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #000000;} 20 | a {color: #6fb3d2;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #f5f5f5;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #be643c;} 33 | div.output_prompt {color: #d381c3;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #505050; 37 | } 38 | div.output_area pre {font-weight: normal; color: #e0e0e0;} 39 | div.output_subarea {font-weight: normal; color: #e0e0e0;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #e0e0e0 solid; 43 | color: #e0e0e0; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #e0e0e0;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #d381c3;} 50 | div.text_cell_render, div.output_html {color: #e0e0e0;} 51 | 52 | span.ansiblack {color: #303030;} 53 | span.ansiblue {color: #76c7b7;} 54 | span.ansigray {color: #d0d0d0;} 55 | span.ansigreen {color: #a1c659;} 56 | span.ansipurple {color: #d381c3;} 57 | span.ansired {color: #fb0120;} 58 | span.ansiyellow {color: #fda331;} 59 | 60 | div.output_stderr {background-color: #fb0120;} 61 | div.output_stderr pre {color: #f5f5f5;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #000000; color: #f5f5f5;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #303030 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #000000; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #b0b0b0;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #d0d0d0 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #be643c;} 70 | .cm-s-ipython span.cm-atom {color: #d381c3;} 71 | .cm-s-ipython span.cm-number {color: #d381c3;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #a1c659;} 74 | .cm-s-ipython span.cm-keyword {color: #fb0120;} 75 | .cm-s-ipython span.cm-string {color: #fda331;} 76 | .cm-s-ipython span.cm-operator {color: #be643c;} 77 | .cm-s-ipython span.cm-builtin {color: #d381c3;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #a1c659;} 80 | .cm-s-ipython span.cm-variable-2 {color: #6fb3d2;} 81 | .cm-s-ipython span.cm-def {color: #fc6d24;} 82 | .cm-s-ipython span.cm-error {background: #fb0120; color: #d0d0d0;} 83 | .cm-s-ipython span.cm-bracket {color: #e0e0e0;} 84 | .cm-s-ipython span.cm-tag {color: #fb0120;} 85 | .cm-s-ipython span.cm-link {color: #d381c3;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #f5f5f5 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-chalk-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Chalk Dark 4 | Author: Chris Kempson (http://chriskempson.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #151515;} 20 | a {color: #6fc2ef;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #e0e0e0;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #deaf8f;} 33 | div.output_prompt {color: #e1a3ee;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #303030; 37 | } 38 | div.output_area pre {font-weight: normal; color: #d0d0d0;} 39 | div.output_subarea {font-weight: normal; color: #d0d0d0;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #d0d0d0 solid; 43 | color: #d0d0d0; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #d0d0d0;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #e1a3ee;} 50 | div.text_cell_render, div.output_html {color: #d0d0d0;} 51 | 52 | span.ansiblack {color: #202020;} 53 | span.ansiblue {color: #12cfc0;} 54 | span.ansigray {color: #b0b0b0;} 55 | span.ansigreen {color: #acc267;} 56 | span.ansipurple {color: #e1a3ee;} 57 | span.ansired {color: #fb9fb1;} 58 | span.ansiyellow {color: #ddb26f;} 59 | 60 | div.output_stderr {background-color: #fb9fb1;} 61 | div.output_stderr pre {color: #e0e0e0;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #151515; color: #e0e0e0;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #202020 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #151515; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #505050;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #b0b0b0 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #deaf8f;} 70 | .cm-s-ipython span.cm-atom {color: #e1a3ee;} 71 | .cm-s-ipython span.cm-number {color: #e1a3ee;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #acc267;} 74 | .cm-s-ipython span.cm-keyword {color: #fb9fb1;} 75 | .cm-s-ipython span.cm-string {color: #ddb26f;} 76 | .cm-s-ipython span.cm-operator {color: #deaf8f;} 77 | .cm-s-ipython span.cm-builtin {color: #e1a3ee;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #acc267;} 80 | .cm-s-ipython span.cm-variable-2 {color: #6fc2ef;} 81 | .cm-s-ipython span.cm-def {color: #eda987;} 82 | .cm-s-ipython span.cm-error {background: #fb9fb1; color: #b0b0b0;} 83 | .cm-s-ipython span.cm-bracket {color: #d0d0d0;} 84 | .cm-s-ipython span.cm-tag {color: #fb9fb1;} 85 | .cm-s-ipython span.cm-link {color: #e1a3ee;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #e0e0e0 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-chalk-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Chalk Light 4 | Author: Chris Kempson (http://chriskempson.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #f5f5f5;} 20 | a {color: #6fc2ef;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #202020;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #e1a3ee;} 33 | div.output_prompt {color: #deaf8f;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #d0d0d0; 37 | } 38 | div.output_area pre {font-weight: normal; color: #303030;} 39 | div.output_subarea {font-weight: normal; color: #303030;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #505050 solid; 43 | color: #505050; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #303030;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #deaf8f;} 50 | div.text_cell_render, div.output_html {color: #303030;} 51 | 52 | span.ansiblack {color: #202020;} 53 | span.ansiblue {color: #12cfc0;} 54 | span.ansigray {color: #b0b0b0;} 55 | span.ansigreen {color: #acc267;} 56 | span.ansipurple {color: #e1a3ee;} 57 | span.ansired {color: #fb9fb1;} 58 | span.ansiyellow {color: #ddb26f;} 59 | 60 | div.output_stderr {background-color: #fb9fb1;} 61 | div.output_stderr pre {color: #e0e0e0;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #f5f5f5; color: #202020;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #e0e0e0 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #f5f5f5; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #b0b0b0;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #505050 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #deaf8f;} 70 | .cm-s-ipython span.cm-atom {color: #e1a3ee;} 71 | .cm-s-ipython span.cm-number {color: #e1a3ee;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #acc267;} 74 | .cm-s-ipython span.cm-keyword {color: #fb9fb1;} 75 | .cm-s-ipython span.cm-string {color: #ddb26f;} 76 | .cm-s-ipython span.cm-operator {color: #deaf8f;} 77 | .cm-s-ipython span.cm-builtin {color: #e1a3ee;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #acc267;} 80 | .cm-s-ipython span.cm-variable-2 {color: #6fc2ef;} 81 | .cm-s-ipython span.cm-def {color: #eda987;} 82 | .cm-s-ipython span.cm-error {background: #fb9fb1; color: #505050;} 83 | .cm-s-ipython span.cm-bracket {color: #303030;} 84 | .cm-s-ipython span.cm-tag {color: #fb9fb1;} 85 | .cm-s-ipython span.cm-link {color: #e1a3ee;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #202020 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-flat-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Flat Light 4 | Author: Chris Kempson (http://chriskempson.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #ECF0F1;} 20 | a {color: #3498DB;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #34495E;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #9B59B6;} 33 | div.output_prompt {color: #be643c;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #e0e0e0; 37 | } 38 | div.output_area pre {font-weight: normal; color: #7F8C8D;} 39 | div.output_subarea {font-weight: normal; color: #7F8C8D;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #95A5A6 solid; 43 | color: #95A5A6; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #7F8C8D;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #be643c;} 50 | div.text_cell_render, div.output_html {color: #7F8C8D;} 51 | 52 | span.ansiblack {color: #34495E;} 53 | span.ansiblue {color: #1ABC9C;} 54 | span.ansigray {color: #BDC3C7;} 55 | span.ansigreen {color: #2ECC71;} 56 | span.ansipurple {color: #9B59B6;} 57 | span.ansired {color: #E74C3C;} 58 | span.ansiyellow {color: #F1C40F;} 59 | 60 | div.output_stderr {background-color: #E74C3C;} 61 | div.output_stderr pre {color: #f5f5f5;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #ECF0F1; color: #34495E;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #f5f5f5 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #ECF0F1; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #BDC3C7;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #95A5A6 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #be643c;} 70 | .cm-s-ipython span.cm-atom {color: #9B59B6;} 71 | .cm-s-ipython span.cm-number {color: #9B59B6;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #2ECC71;} 74 | .cm-s-ipython span.cm-keyword {color: #E74C3C;} 75 | .cm-s-ipython span.cm-string {color: #F1C40F;} 76 | .cm-s-ipython span.cm-operator {color: #be643c;} 77 | .cm-s-ipython span.cm-builtin {color: #9B59B6;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #2ECC71;} 80 | .cm-s-ipython span.cm-variable-2 {color: #3498DB;} 81 | .cm-s-ipython span.cm-def {color: #E67E22;} 82 | .cm-s-ipython span.cm-error {background: #E74C3C; color: #95A5A6;} 83 | .cm-s-ipython span.cm-bracket {color: #7F8C8D;} 84 | .cm-s-ipython span.cm-tag {color: #E74C3C;} 85 | .cm-s-ipython span.cm-link {color: #9B59B6;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #34495E !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-google-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Google Dark 4 | Author: Seth Wright (http://sethawright.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #1d1f21;} 20 | a {color: #3971ED;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #e0e0e0;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #3971ED;} 33 | div.output_prompt {color: #A36AC7;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #373b41; 37 | } 38 | div.output_area pre {font-weight: normal; color: #c5c8c6;} 39 | div.output_subarea {font-weight: normal; color: #c5c8c6;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #c5c8c6 solid; 43 | color: #c5c8c6; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #c5c8c6;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #A36AC7;} 50 | div.text_cell_render, div.output_html {color: #c5c8c6;} 51 | 52 | span.ansiblack {color: #282a2e;} 53 | span.ansiblue {color: #3971ED;} 54 | span.ansigray {color: #b4b7b4;} 55 | span.ansigreen {color: #198844;} 56 | span.ansipurple {color: #A36AC7;} 57 | span.ansired {color: #CC342B;} 58 | span.ansiyellow {color: #FBA922;} 59 | 60 | div.output_stderr {background-color: #CC342B;} 61 | div.output_stderr pre {color: #e0e0e0;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #1d1f21; color: #e0e0e0;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #282a2e !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #1d1f21; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #969896;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #b4b7b4 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #3971ED;} 70 | .cm-s-ipython span.cm-atom {color: #A36AC7;} 71 | .cm-s-ipython span.cm-number {color: #A36AC7;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #198844;} 74 | .cm-s-ipython span.cm-keyword {color: #CC342B;} 75 | .cm-s-ipython span.cm-string {color: #FBA922;} 76 | .cm-s-ipython span.cm-operator {color: #3971ED;} 77 | .cm-s-ipython span.cm-builtin {color: #A36AC7;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #198844;} 80 | .cm-s-ipython span.cm-variable-2 {color: #3971ED;} 81 | .cm-s-ipython span.cm-def {color: #F96A38;} 82 | .cm-s-ipython span.cm-error {background: #CC342B; color: #b4b7b4;} 83 | .cm-s-ipython span.cm-bracket {color: #c5c8c6;} 84 | .cm-s-ipython span.cm-tag {color: #CC342B;} 85 | .cm-s-ipython span.cm-link {color: #A36AC7;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #e0e0e0 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-google-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Google Light 4 | Author: Seth Wright (http://sethawright.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #ffffff;} 20 | a {color: #3971ED;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #282a2e;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #A36AC7;} 33 | div.output_prompt {color: #3971ED;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #c5c8c6; 37 | } 38 | div.output_area pre {font-weight: normal; color: #373b41;} 39 | div.output_subarea {font-weight: normal; color: #373b41;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #969896 solid; 43 | color: #969896; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #373b41;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #3971ED;} 50 | div.text_cell_render, div.output_html {color: #373b41;} 51 | 52 | span.ansiblack {color: #282a2e;} 53 | span.ansiblue {color: #3971ED;} 54 | span.ansigray {color: #b4b7b4;} 55 | span.ansigreen {color: #198844;} 56 | span.ansipurple {color: #A36AC7;} 57 | span.ansired {color: #CC342B;} 58 | span.ansiyellow {color: #FBA922;} 59 | 60 | div.output_stderr {background-color: #CC342B;} 61 | div.output_stderr pre {color: #e0e0e0;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #ffffff; color: #282a2e;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #e0e0e0 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #ffffff; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #b4b7b4;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #969896 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #3971ED;} 70 | .cm-s-ipython span.cm-atom {color: #A36AC7;} 71 | .cm-s-ipython span.cm-number {color: #A36AC7;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #198844;} 74 | .cm-s-ipython span.cm-keyword {color: #CC342B;} 75 | .cm-s-ipython span.cm-string {color: #FBA922;} 76 | .cm-s-ipython span.cm-operator {color: #3971ED;} 77 | .cm-s-ipython span.cm-builtin {color: #A36AC7;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #198844;} 80 | .cm-s-ipython span.cm-variable-2 {color: #3971ED;} 81 | .cm-s-ipython span.cm-def {color: #F96A38;} 82 | .cm-s-ipython span.cm-error {background: #CC342B; color: #969896;} 83 | .cm-s-ipython span.cm-bracket {color: #373b41;} 84 | .cm-s-ipython span.cm-tag {color: #CC342B;} 85 | .cm-s-ipython span.cm-link {color: #A36AC7;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #282a2e !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-mocha-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Mocha Dark 4 | Author: Chris Kempson (http://chriskempson.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #3B3228;} 20 | a {color: #8ab3b5;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #e9e1dd;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #bb9584;} 33 | div.output_prompt {color: #a89bb9;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #645240; 37 | } 38 | div.output_area pre {font-weight: normal; color: #d0c8c6;} 39 | div.output_subarea {font-weight: normal; color: #d0c8c6;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #d0c8c6 solid; 43 | color: #d0c8c6; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #d0c8c6;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #a89bb9;} 50 | div.text_cell_render, div.output_html {color: #d0c8c6;} 51 | 52 | span.ansiblack {color: #534636;} 53 | span.ansiblue {color: #7bbda4;} 54 | span.ansigray {color: #b8afad;} 55 | span.ansigreen {color: #beb55b;} 56 | span.ansipurple {color: #a89bb9;} 57 | span.ansired {color: #cb6077;} 58 | span.ansiyellow {color: #f4bc87;} 59 | 60 | div.output_stderr {background-color: #cb6077;} 61 | div.output_stderr pre {color: #e9e1dd;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #3B3228; color: #e9e1dd;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #534636 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #3B3228; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #7e705a;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #b8afad !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #bb9584;} 70 | .cm-s-ipython span.cm-atom {color: #a89bb9;} 71 | .cm-s-ipython span.cm-number {color: #a89bb9;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #beb55b;} 74 | .cm-s-ipython span.cm-keyword {color: #cb6077;} 75 | .cm-s-ipython span.cm-string {color: #f4bc87;} 76 | .cm-s-ipython span.cm-operator {color: #bb9584;} 77 | .cm-s-ipython span.cm-builtin {color: #a89bb9;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #beb55b;} 80 | .cm-s-ipython span.cm-variable-2 {color: #8ab3b5;} 81 | .cm-s-ipython span.cm-def {color: #d28b71;} 82 | .cm-s-ipython span.cm-error {background: #cb6077; color: #b8afad;} 83 | .cm-s-ipython span.cm-bracket {color: #d0c8c6;} 84 | .cm-s-ipython span.cm-tag {color: #cb6077;} 85 | .cm-s-ipython span.cm-link {color: #a89bb9;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #e9e1dd !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-mocha-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Mocha Light 4 | Author: Chris Kempson (http://chriskempson.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #f5eeeb;} 20 | a {color: #8ab3b5;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #534636;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #a89bb9;} 33 | div.output_prompt {color: #bb9584;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #d0c8c6; 37 | } 38 | div.output_area pre {font-weight: normal; color: #645240;} 39 | div.output_subarea {font-weight: normal; color: #645240;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #7e705a solid; 43 | color: #7e705a; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #645240;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #bb9584;} 50 | div.text_cell_render, div.output_html {color: #645240;} 51 | 52 | span.ansiblack {color: #534636;} 53 | span.ansiblue {color: #7bbda4;} 54 | span.ansigray {color: #b8afad;} 55 | span.ansigreen {color: #beb55b;} 56 | span.ansipurple {color: #a89bb9;} 57 | span.ansired {color: #cb6077;} 58 | span.ansiyellow {color: #f4bc87;} 59 | 60 | div.output_stderr {background-color: #cb6077;} 61 | div.output_stderr pre {color: #e9e1dd;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #f5eeeb; color: #534636;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #e9e1dd !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #f5eeeb; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #b8afad;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #7e705a !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #bb9584;} 70 | .cm-s-ipython span.cm-atom {color: #a89bb9;} 71 | .cm-s-ipython span.cm-number {color: #a89bb9;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #beb55b;} 74 | .cm-s-ipython span.cm-keyword {color: #cb6077;} 75 | .cm-s-ipython span.cm-string {color: #f4bc87;} 76 | .cm-s-ipython span.cm-operator {color: #bb9584;} 77 | .cm-s-ipython span.cm-builtin {color: #a89bb9;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #beb55b;} 80 | .cm-s-ipython span.cm-variable-2 {color: #8ab3b5;} 81 | .cm-s-ipython span.cm-def {color: #d28b71;} 82 | .cm-s-ipython span.cm-error {background: #cb6077; color: #7e705a;} 83 | .cm-s-ipython span.cm-bracket {color: #645240;} 84 | .cm-s-ipython span.cm-tag {color: #cb6077;} 85 | .cm-s-ipython span.cm-link {color: #a89bb9;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #534636 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-ocean-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Ocean Dark 4 | Author: Chris Kempson (http://chriskempson.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #2b303b;} 20 | a {color: #8fa1b3;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #dfe1e8;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #ab7967;} 33 | div.output_prompt {color: #b48ead;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #4f5b66; 37 | } 38 | div.output_area pre {font-weight: normal; color: #c0c5ce;} 39 | div.output_subarea {font-weight: normal; color: #c0c5ce;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #c0c5ce solid; 43 | color: #c0c5ce; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #c0c5ce;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #b48ead;} 50 | div.text_cell_render, div.output_html {color: #c0c5ce;} 51 | 52 | span.ansiblack {color: #343d46;} 53 | span.ansiblue {color: #96b5b4;} 54 | span.ansigray {color: #a7adba;} 55 | span.ansigreen {color: #a3be8c;} 56 | span.ansipurple {color: #b48ead;} 57 | span.ansired {color: #bf616a;} 58 | span.ansiyellow {color: #ebcb8b;} 59 | 60 | div.output_stderr {background-color: #bf616a;} 61 | div.output_stderr pre {color: #dfe1e8;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #2b303b; color: #dfe1e8;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #343d46 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #2b303b; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #65737e;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #a7adba !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #ab7967;} 70 | .cm-s-ipython span.cm-atom {color: #b48ead;} 71 | .cm-s-ipython span.cm-number {color: #b48ead;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #a3be8c;} 74 | .cm-s-ipython span.cm-keyword {color: #bf616a;} 75 | .cm-s-ipython span.cm-string {color: #ebcb8b;} 76 | .cm-s-ipython span.cm-operator {color: #ab7967;} 77 | .cm-s-ipython span.cm-builtin {color: #b48ead;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #a3be8c;} 80 | .cm-s-ipython span.cm-variable-2 {color: #8fa1b3;} 81 | .cm-s-ipython span.cm-def {color: #d08770;} 82 | .cm-s-ipython span.cm-error {background: #bf616a; color: #a7adba;} 83 | .cm-s-ipython span.cm-bracket {color: #c0c5ce;} 84 | .cm-s-ipython span.cm-tag {color: #bf616a;} 85 | .cm-s-ipython span.cm-link {color: #b48ead;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #dfe1e8 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-ocean-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Ocean Light 4 | Author: Chris Kempson (http://chriskempson.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #eff1f5;} 20 | a {color: #8fa1b3;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #343d46;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #b48ead;} 33 | div.output_prompt {color: #ab7967;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #c0c5ce; 37 | } 38 | div.output_area pre {font-weight: normal; color: #4f5b66;} 39 | div.output_subarea {font-weight: normal; color: #4f5b66;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #65737e solid; 43 | color: #65737e; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #4f5b66;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #ab7967;} 50 | div.text_cell_render, div.output_html {color: #4f5b66;} 51 | 52 | span.ansiblack {color: #343d46;} 53 | span.ansiblue {color: #96b5b4;} 54 | span.ansigray {color: #a7adba;} 55 | span.ansigreen {color: #a3be8c;} 56 | span.ansipurple {color: #b48ead;} 57 | span.ansired {color: #bf616a;} 58 | span.ansiyellow {color: #ebcb8b;} 59 | 60 | div.output_stderr {background-color: #bf616a;} 61 | div.output_stderr pre {color: #dfe1e8;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #eff1f5; color: #343d46;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #dfe1e8 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #eff1f5; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #a7adba;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #65737e !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #ab7967;} 70 | .cm-s-ipython span.cm-atom {color: #b48ead;} 71 | .cm-s-ipython span.cm-number {color: #b48ead;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #a3be8c;} 74 | .cm-s-ipython span.cm-keyword {color: #bf616a;} 75 | .cm-s-ipython span.cm-string {color: #ebcb8b;} 76 | .cm-s-ipython span.cm-operator {color: #ab7967;} 77 | .cm-s-ipython span.cm-builtin {color: #b48ead;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #a3be8c;} 80 | .cm-s-ipython span.cm-variable-2 {color: #8fa1b3;} 81 | .cm-s-ipython span.cm-def {color: #d08770;} 82 | .cm-s-ipython span.cm-error {background: #bf616a; color: #65737e;} 83 | .cm-s-ipython span.cm-bracket {color: #4f5b66;} 84 | .cm-s-ipython span.cm-tag {color: #bf616a;} 85 | .cm-s-ipython span.cm-link {color: #b48ead;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #343d46 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-twilight-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Twilight Dark 4 | Author: David Hart (http://hart-dev.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #1e1e1e;} 20 | a {color: #7587a6;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #c3c3c3;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #9b703f;} 33 | div.output_prompt {color: #9b859d;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #464b50; 37 | } 38 | div.output_area pre {font-weight: normal; color: #a7a7a7;} 39 | div.output_subarea {font-weight: normal; color: #a7a7a7;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #a7a7a7 solid; 43 | color: #a7a7a7; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #a7a7a7;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #9b859d;} 50 | div.text_cell_render, div.output_html {color: #a7a7a7;} 51 | 52 | span.ansiblack {color: #323537;} 53 | span.ansiblue {color: #afc4db;} 54 | span.ansigray {color: #838184;} 55 | span.ansigreen {color: #8f9d6a;} 56 | span.ansipurple {color: #9b859d;} 57 | span.ansired {color: #cf6a4c;} 58 | span.ansiyellow {color: #f9ee98;} 59 | 60 | div.output_stderr {background-color: #cf6a4c;} 61 | div.output_stderr pre {color: #c3c3c3;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #1e1e1e; color: #c3c3c3;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #323537 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #1e1e1e; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #5f5a60;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #838184 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #9b703f;} 70 | .cm-s-ipython span.cm-atom {color: #9b859d;} 71 | .cm-s-ipython span.cm-number {color: #9b859d;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #8f9d6a;} 74 | .cm-s-ipython span.cm-keyword {color: #cf6a4c;} 75 | .cm-s-ipython span.cm-string {color: #f9ee98;} 76 | .cm-s-ipython span.cm-operator {color: #9b703f;} 77 | .cm-s-ipython span.cm-builtin {color: #9b859d;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #8f9d6a;} 80 | .cm-s-ipython span.cm-variable-2 {color: #7587a6;} 81 | .cm-s-ipython span.cm-def {color: #cda869;} 82 | .cm-s-ipython span.cm-error {background: #cf6a4c; color: #838184;} 83 | .cm-s-ipython span.cm-bracket {color: #a7a7a7;} 84 | .cm-s-ipython span.cm-tag {color: #cf6a4c;} 85 | .cm-s-ipython span.cm-link {color: #9b859d;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #c3c3c3 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-twilight-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Twilight Light 4 | Author: David Hart (http://hart-dev.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #ffffff;} 20 | a {color: #7587a6;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #323537;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #9b859d;} 33 | div.output_prompt {color: #9b703f;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #a7a7a7; 37 | } 38 | div.output_area pre {font-weight: normal; color: #464b50;} 39 | div.output_subarea {font-weight: normal; color: #464b50;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #5f5a60 solid; 43 | color: #5f5a60; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #464b50;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #9b703f;} 50 | div.text_cell_render, div.output_html {color: #464b50;} 51 | 52 | span.ansiblack {color: #323537;} 53 | span.ansiblue {color: #afc4db;} 54 | span.ansigray {color: #838184;} 55 | span.ansigreen {color: #8f9d6a;} 56 | span.ansipurple {color: #9b859d;} 57 | span.ansired {color: #cf6a4c;} 58 | span.ansiyellow {color: #f9ee98;} 59 | 60 | div.output_stderr {background-color: #cf6a4c;} 61 | div.output_stderr pre {color: #c3c3c3;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #ffffff; color: #323537;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #c3c3c3 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #ffffff; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #838184;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #5f5a60 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #9b703f;} 70 | .cm-s-ipython span.cm-atom {color: #9b859d;} 71 | .cm-s-ipython span.cm-number {color: #9b859d;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #8f9d6a;} 74 | .cm-s-ipython span.cm-keyword {color: #cf6a4c;} 75 | .cm-s-ipython span.cm-string {color: #f9ee98;} 76 | .cm-s-ipython span.cm-operator {color: #9b703f;} 77 | .cm-s-ipython span.cm-builtin {color: #9b859d;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #8f9d6a;} 80 | .cm-s-ipython span.cm-variable-2 {color: #7587a6;} 81 | .cm-s-ipython span.cm-def {color: #cda869;} 82 | .cm-s-ipython span.cm-error {background: #cf6a4c; color: #5f5a60;} 83 | .cm-s-ipython span.cm-bracket {color: #464b50;} 84 | .cm-s-ipython span.cm-tag {color: #cf6a4c;} 85 | .cm-s-ipython span.cm-link {color: #9b859d;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #323537 !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-3024-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 3024 Dark 4 | Author: Jan T. Sott (http://github.com/idleberg) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #090300;} 20 | a {color: #01a0e4;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #d6d5d4;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #cdab53;} 33 | div.output_prompt {color: #a16a94;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #4a4543; 37 | } 38 | div.output_area pre {font-weight: normal; color: #a5a2a2;} 39 | div.output_subarea {font-weight: normal; color: #a5a2a2;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #a5a2a2 solid; 43 | color: #a5a2a2; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #a5a2a2;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #a16a94;} 50 | div.text_cell_render, div.output_html {color: #a5a2a2;} 51 | 52 | span.ansiblack {color: #3a3432;} 53 | span.ansiblue {color: #b5e4f4;} 54 | span.ansigray {color: #807d7c;} 55 | span.ansigreen {color: #01a252;} 56 | span.ansipurple {color: #a16a94;} 57 | span.ansired {color: #db2d20;} 58 | span.ansiyellow {color: #fded02;} 59 | 60 | div.output_stderr {background-color: #db2d20;} 61 | div.output_stderr pre {color: #d6d5d4;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #090300; color: #d6d5d4;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #3a3432 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #090300; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #5c5855;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #807d7c !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #cdab53;} 70 | .cm-s-ipython span.cm-atom {color: #a16a94;} 71 | .cm-s-ipython span.cm-number {color: #a16a94;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #01a252;} 74 | .cm-s-ipython span.cm-keyword {color: #db2d20;} 75 | .cm-s-ipython span.cm-string {color: #fded02;} 76 | .cm-s-ipython span.cm-operator {color: #cdab53;} 77 | .cm-s-ipython span.cm-builtin {color: #a16a94;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #01a252;} 80 | .cm-s-ipython span.cm-variable-2 {color: #01a0e4;} 81 | .cm-s-ipython span.cm-def {color: #e8bbd0;} 82 | .cm-s-ipython span.cm-error {background: #db2d20; color: #807d7c;} 83 | .cm-s-ipython span.cm-bracket {color: #a5a2a2;} 84 | .cm-s-ipython span.cm-tag {color: #db2d20;} 85 | .cm-s-ipython span.cm-link {color: #a16a94;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #d6d5d4 !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-3024-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 3024 Light 4 | Author: Jan T. Sott (http://github.com/idleberg) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #f7f7f7;} 20 | a {color: #01a0e4;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #3a3432;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #a16a94;} 33 | div.output_prompt {color: #cdab53;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #a5a2a2; 37 | } 38 | div.output_area pre {font-weight: normal; color: #4a4543;} 39 | div.output_subarea {font-weight: normal; color: #4a4543;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #5c5855 solid; 43 | color: #5c5855; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #4a4543;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #cdab53;} 50 | div.text_cell_render, div.output_html {color: #4a4543;} 51 | 52 | span.ansiblack {color: #3a3432;} 53 | span.ansiblue {color: #b5e4f4;} 54 | span.ansigray {color: #807d7c;} 55 | span.ansigreen {color: #01a252;} 56 | span.ansipurple {color: #a16a94;} 57 | span.ansired {color: #db2d20;} 58 | span.ansiyellow {color: #fded02;} 59 | 60 | div.output_stderr {background-color: #db2d20;} 61 | div.output_stderr pre {color: #d6d5d4;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #f7f7f7; color: #3a3432;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #d6d5d4 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #f7f7f7; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #807d7c;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #5c5855 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #cdab53;} 70 | .cm-s-ipython span.cm-atom {color: #a16a94;} 71 | .cm-s-ipython span.cm-number {color: #a16a94;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #01a252;} 74 | .cm-s-ipython span.cm-keyword {color: #db2d20;} 75 | .cm-s-ipython span.cm-string {color: #fded02;} 76 | .cm-s-ipython span.cm-operator {color: #cdab53;} 77 | .cm-s-ipython span.cm-builtin {color: #a16a94;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #01a252;} 80 | .cm-s-ipython span.cm-variable-2 {color: #01a0e4;} 81 | .cm-s-ipython span.cm-def {color: #e8bbd0;} 82 | .cm-s-ipython span.cm-error {background: #db2d20; color: #5c5855;} 83 | .cm-s-ipython span.cm-bracket {color: #4a4543;} 84 | .cm-s-ipython span.cm-tag {color: #db2d20;} 85 | .cm-s-ipython span.cm-link {color: #a16a94;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #3a3432 !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-bright-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Bright Dark 4 | Author: Chris Kempson (http://chriskempson.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #000000;} 20 | a {color: #6fb3d2;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #f5f5f5;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #be643c;} 33 | div.output_prompt {color: #d381c3;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #505050; 37 | } 38 | div.output_area pre {font-weight: normal; color: #e0e0e0;} 39 | div.output_subarea {font-weight: normal; color: #e0e0e0;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #e0e0e0 solid; 43 | color: #e0e0e0; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #e0e0e0;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #d381c3;} 50 | div.text_cell_render, div.output_html {color: #e0e0e0;} 51 | 52 | span.ansiblack {color: #303030;} 53 | span.ansiblue {color: #76c7b7;} 54 | span.ansigray {color: #d0d0d0;} 55 | span.ansigreen {color: #a1c659;} 56 | span.ansipurple {color: #d381c3;} 57 | span.ansired {color: #fb0120;} 58 | span.ansiyellow {color: #fda331;} 59 | 60 | div.output_stderr {background-color: #fb0120;} 61 | div.output_stderr pre {color: #f5f5f5;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #000000; color: #f5f5f5;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #303030 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #000000; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #b0b0b0;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #d0d0d0 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #be643c;} 70 | .cm-s-ipython span.cm-atom {color: #d381c3;} 71 | .cm-s-ipython span.cm-number {color: #d381c3;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #a1c659;} 74 | .cm-s-ipython span.cm-keyword {color: #fb0120;} 75 | .cm-s-ipython span.cm-string {color: #fda331;} 76 | .cm-s-ipython span.cm-operator {color: #be643c;} 77 | .cm-s-ipython span.cm-builtin {color: #d381c3;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #a1c659;} 80 | .cm-s-ipython span.cm-variable-2 {color: #6fb3d2;} 81 | .cm-s-ipython span.cm-def {color: #fc6d24;} 82 | .cm-s-ipython span.cm-error {background: #fb0120; color: #d0d0d0;} 83 | .cm-s-ipython span.cm-bracket {color: #e0e0e0;} 84 | .cm-s-ipython span.cm-tag {color: #fb0120;} 85 | .cm-s-ipython span.cm-link {color: #d381c3;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #f5f5f5 !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-chalk-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Chalk Dark 4 | Author: Chris Kempson (http://chriskempson.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #151515;} 20 | a {color: #6fc2ef;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #e0e0e0;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #deaf8f;} 33 | div.output_prompt {color: #e1a3ee;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #303030; 37 | } 38 | div.output_area pre {font-weight: normal; color: #d0d0d0;} 39 | div.output_subarea {font-weight: normal; color: #d0d0d0;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #d0d0d0 solid; 43 | color: #d0d0d0; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #d0d0d0;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #e1a3ee;} 50 | div.text_cell_render, div.output_html {color: #d0d0d0;} 51 | 52 | span.ansiblack {color: #202020;} 53 | span.ansiblue {color: #12cfc0;} 54 | span.ansigray {color: #b0b0b0;} 55 | span.ansigreen {color: #acc267;} 56 | span.ansipurple {color: #e1a3ee;} 57 | span.ansired {color: #fb9fb1;} 58 | span.ansiyellow {color: #ddb26f;} 59 | 60 | div.output_stderr {background-color: #fb9fb1;} 61 | div.output_stderr pre {color: #e0e0e0;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #151515; color: #e0e0e0;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #202020 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #151515; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #505050;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #b0b0b0 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #deaf8f;} 70 | .cm-s-ipython span.cm-atom {color: #e1a3ee;} 71 | .cm-s-ipython span.cm-number {color: #e1a3ee;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #acc267;} 74 | .cm-s-ipython span.cm-keyword {color: #fb9fb1;} 75 | .cm-s-ipython span.cm-string {color: #ddb26f;} 76 | .cm-s-ipython span.cm-operator {color: #deaf8f;} 77 | .cm-s-ipython span.cm-builtin {color: #e1a3ee;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #acc267;} 80 | .cm-s-ipython span.cm-variable-2 {color: #6fc2ef;} 81 | .cm-s-ipython span.cm-def {color: #eda987;} 82 | .cm-s-ipython span.cm-error {background: #fb9fb1; color: #b0b0b0;} 83 | .cm-s-ipython span.cm-bracket {color: #d0d0d0;} 84 | .cm-s-ipython span.cm-tag {color: #fb9fb1;} 85 | .cm-s-ipython span.cm-link {color: #e1a3ee;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #e0e0e0 !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-chalk-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Chalk Light 4 | Author: Chris Kempson (http://chriskempson.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #f5f5f5;} 20 | a {color: #6fc2ef;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #202020;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #e1a3ee;} 33 | div.output_prompt {color: #deaf8f;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #d0d0d0; 37 | } 38 | div.output_area pre {font-weight: normal; color: #303030;} 39 | div.output_subarea {font-weight: normal; color: #303030;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #505050 solid; 43 | color: #505050; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #303030;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #deaf8f;} 50 | div.text_cell_render, div.output_html {color: #303030;} 51 | 52 | span.ansiblack {color: #202020;} 53 | span.ansiblue {color: #12cfc0;} 54 | span.ansigray {color: #b0b0b0;} 55 | span.ansigreen {color: #acc267;} 56 | span.ansipurple {color: #e1a3ee;} 57 | span.ansired {color: #fb9fb1;} 58 | span.ansiyellow {color: #ddb26f;} 59 | 60 | div.output_stderr {background-color: #fb9fb1;} 61 | div.output_stderr pre {color: #e0e0e0;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #f5f5f5; color: #202020;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #e0e0e0 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #f5f5f5; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #b0b0b0;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #505050 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #deaf8f;} 70 | .cm-s-ipython span.cm-atom {color: #e1a3ee;} 71 | .cm-s-ipython span.cm-number {color: #e1a3ee;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #acc267;} 74 | .cm-s-ipython span.cm-keyword {color: #fb9fb1;} 75 | .cm-s-ipython span.cm-string {color: #ddb26f;} 76 | .cm-s-ipython span.cm-operator {color: #deaf8f;} 77 | .cm-s-ipython span.cm-builtin {color: #e1a3ee;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #acc267;} 80 | .cm-s-ipython span.cm-variable-2 {color: #6fc2ef;} 81 | .cm-s-ipython span.cm-def {color: #eda987;} 82 | .cm-s-ipython span.cm-error {background: #fb9fb1; color: #505050;} 83 | .cm-s-ipython span.cm-bracket {color: #303030;} 84 | .cm-s-ipython span.cm-tag {color: #fb9fb1;} 85 | .cm-s-ipython span.cm-link {color: #e1a3ee;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #202020 !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-flat-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Flat Light 4 | Author: Chris Kempson (http://chriskempson.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #ECF0F1;} 20 | a {color: #3498DB;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #34495E;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #9B59B6;} 33 | div.output_prompt {color: #be643c;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #e0e0e0; 37 | } 38 | div.output_area pre {font-weight: normal; color: #7F8C8D;} 39 | div.output_subarea {font-weight: normal; color: #7F8C8D;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #95A5A6 solid; 43 | color: #95A5A6; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #7F8C8D;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #be643c;} 50 | div.text_cell_render, div.output_html {color: #7F8C8D;} 51 | 52 | span.ansiblack {color: #34495E;} 53 | span.ansiblue {color: #1ABC9C;} 54 | span.ansigray {color: #BDC3C7;} 55 | span.ansigreen {color: #2ECC71;} 56 | span.ansipurple {color: #9B59B6;} 57 | span.ansired {color: #E74C3C;} 58 | span.ansiyellow {color: #F1C40F;} 59 | 60 | div.output_stderr {background-color: #E74C3C;} 61 | div.output_stderr pre {color: #f5f5f5;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #ECF0F1; color: #34495E;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #f5f5f5 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #ECF0F1; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #BDC3C7;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #95A5A6 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #be643c;} 70 | .cm-s-ipython span.cm-atom {color: #9B59B6;} 71 | .cm-s-ipython span.cm-number {color: #9B59B6;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #2ECC71;} 74 | .cm-s-ipython span.cm-keyword {color: #E74C3C;} 75 | .cm-s-ipython span.cm-string {color: #F1C40F;} 76 | .cm-s-ipython span.cm-operator {color: #be643c;} 77 | .cm-s-ipython span.cm-builtin {color: #9B59B6;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #2ECC71;} 80 | .cm-s-ipython span.cm-variable-2 {color: #3498DB;} 81 | .cm-s-ipython span.cm-def {color: #E67E22;} 82 | .cm-s-ipython span.cm-error {background: #E74C3C; color: #95A5A6;} 83 | .cm-s-ipython span.cm-bracket {color: #7F8C8D;} 84 | .cm-s-ipython span.cm-tag {color: #E74C3C;} 85 | .cm-s-ipython span.cm-link {color: #9B59B6;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #34495E !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-google-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Google Dark 4 | Author: Seth Wright (http://sethawright.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #1d1f21;} 20 | a {color: #3971ED;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #e0e0e0;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #3971ED;} 33 | div.output_prompt {color: #A36AC7;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #373b41; 37 | } 38 | div.output_area pre {font-weight: normal; color: #c5c8c6;} 39 | div.output_subarea {font-weight: normal; color: #c5c8c6;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #c5c8c6 solid; 43 | color: #c5c8c6; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #c5c8c6;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #A36AC7;} 50 | div.text_cell_render, div.output_html {color: #c5c8c6;} 51 | 52 | span.ansiblack {color: #282a2e;} 53 | span.ansiblue {color: #3971ED;} 54 | span.ansigray {color: #b4b7b4;} 55 | span.ansigreen {color: #198844;} 56 | span.ansipurple {color: #A36AC7;} 57 | span.ansired {color: #CC342B;} 58 | span.ansiyellow {color: #FBA922;} 59 | 60 | div.output_stderr {background-color: #CC342B;} 61 | div.output_stderr pre {color: #e0e0e0;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #1d1f21; color: #e0e0e0;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #282a2e !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #1d1f21; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #969896;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #b4b7b4 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #3971ED;} 70 | .cm-s-ipython span.cm-atom {color: #A36AC7;} 71 | .cm-s-ipython span.cm-number {color: #A36AC7;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #198844;} 74 | .cm-s-ipython span.cm-keyword {color: #CC342B;} 75 | .cm-s-ipython span.cm-string {color: #FBA922;} 76 | .cm-s-ipython span.cm-operator {color: #3971ED;} 77 | .cm-s-ipython span.cm-builtin {color: #A36AC7;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #198844;} 80 | .cm-s-ipython span.cm-variable-2 {color: #3971ED;} 81 | .cm-s-ipython span.cm-def {color: #F96A38;} 82 | .cm-s-ipython span.cm-error {background: #CC342B; color: #b4b7b4;} 83 | .cm-s-ipython span.cm-bracket {color: #c5c8c6;} 84 | .cm-s-ipython span.cm-tag {color: #CC342B;} 85 | .cm-s-ipython span.cm-link {color: #A36AC7;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #e0e0e0 !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-google-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Google Light 4 | Author: Seth Wright (http://sethawright.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #ffffff;} 20 | a {color: #3971ED;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #282a2e;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #A36AC7;} 33 | div.output_prompt {color: #3971ED;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #c5c8c6; 37 | } 38 | div.output_area pre {font-weight: normal; color: #373b41;} 39 | div.output_subarea {font-weight: normal; color: #373b41;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #969896 solid; 43 | color: #969896; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #373b41;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #3971ED;} 50 | div.text_cell_render, div.output_html {color: #373b41;} 51 | 52 | span.ansiblack {color: #282a2e;} 53 | span.ansiblue {color: #3971ED;} 54 | span.ansigray {color: #b4b7b4;} 55 | span.ansigreen {color: #198844;} 56 | span.ansipurple {color: #A36AC7;} 57 | span.ansired {color: #CC342B;} 58 | span.ansiyellow {color: #FBA922;} 59 | 60 | div.output_stderr {background-color: #CC342B;} 61 | div.output_stderr pre {color: #e0e0e0;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #ffffff; color: #282a2e;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #e0e0e0 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #ffffff; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #b4b7b4;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #969896 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #3971ED;} 70 | .cm-s-ipython span.cm-atom {color: #A36AC7;} 71 | .cm-s-ipython span.cm-number {color: #A36AC7;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #198844;} 74 | .cm-s-ipython span.cm-keyword {color: #CC342B;} 75 | .cm-s-ipython span.cm-string {color: #FBA922;} 76 | .cm-s-ipython span.cm-operator {color: #3971ED;} 77 | .cm-s-ipython span.cm-builtin {color: #A36AC7;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #198844;} 80 | .cm-s-ipython span.cm-variable-2 {color: #3971ED;} 81 | .cm-s-ipython span.cm-def {color: #F96A38;} 82 | .cm-s-ipython span.cm-error {background: #CC342B; color: #969896;} 83 | .cm-s-ipython span.cm-bracket {color: #373b41;} 84 | .cm-s-ipython span.cm-tag {color: #CC342B;} 85 | .cm-s-ipython span.cm-link {color: #A36AC7;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #282a2e !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-mocha-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Mocha Dark 4 | Author: Chris Kempson (http://chriskempson.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #3B3228;} 20 | a {color: #8ab3b5;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #e9e1dd;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #bb9584;} 33 | div.output_prompt {color: #a89bb9;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #645240; 37 | } 38 | div.output_area pre {font-weight: normal; color: #d0c8c6;} 39 | div.output_subarea {font-weight: normal; color: #d0c8c6;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #d0c8c6 solid; 43 | color: #d0c8c6; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #d0c8c6;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #a89bb9;} 50 | div.text_cell_render, div.output_html {color: #d0c8c6;} 51 | 52 | span.ansiblack {color: #534636;} 53 | span.ansiblue {color: #7bbda4;} 54 | span.ansigray {color: #b8afad;} 55 | span.ansigreen {color: #beb55b;} 56 | span.ansipurple {color: #a89bb9;} 57 | span.ansired {color: #cb6077;} 58 | span.ansiyellow {color: #f4bc87;} 59 | 60 | div.output_stderr {background-color: #cb6077;} 61 | div.output_stderr pre {color: #e9e1dd;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #3B3228; color: #e9e1dd;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #534636 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #3B3228; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #7e705a;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #b8afad !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #bb9584;} 70 | .cm-s-ipython span.cm-atom {color: #a89bb9;} 71 | .cm-s-ipython span.cm-number {color: #a89bb9;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #beb55b;} 74 | .cm-s-ipython span.cm-keyword {color: #cb6077;} 75 | .cm-s-ipython span.cm-string {color: #f4bc87;} 76 | .cm-s-ipython span.cm-operator {color: #bb9584;} 77 | .cm-s-ipython span.cm-builtin {color: #a89bb9;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #beb55b;} 80 | .cm-s-ipython span.cm-variable-2 {color: #8ab3b5;} 81 | .cm-s-ipython span.cm-def {color: #d28b71;} 82 | .cm-s-ipython span.cm-error {background: #cb6077; color: #b8afad;} 83 | .cm-s-ipython span.cm-bracket {color: #d0c8c6;} 84 | .cm-s-ipython span.cm-tag {color: #cb6077;} 85 | .cm-s-ipython span.cm-link {color: #a89bb9;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #e9e1dd !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-mocha-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Mocha Light 4 | Author: Chris Kempson (http://chriskempson.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #f5eeeb;} 20 | a {color: #8ab3b5;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #534636;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #a89bb9;} 33 | div.output_prompt {color: #bb9584;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #d0c8c6; 37 | } 38 | div.output_area pre {font-weight: normal; color: #645240;} 39 | div.output_subarea {font-weight: normal; color: #645240;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #7e705a solid; 43 | color: #7e705a; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #645240;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #bb9584;} 50 | div.text_cell_render, div.output_html {color: #645240;} 51 | 52 | span.ansiblack {color: #534636;} 53 | span.ansiblue {color: #7bbda4;} 54 | span.ansigray {color: #b8afad;} 55 | span.ansigreen {color: #beb55b;} 56 | span.ansipurple {color: #a89bb9;} 57 | span.ansired {color: #cb6077;} 58 | span.ansiyellow {color: #f4bc87;} 59 | 60 | div.output_stderr {background-color: #cb6077;} 61 | div.output_stderr pre {color: #e9e1dd;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #f5eeeb; color: #534636;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #e9e1dd !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #f5eeeb; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #b8afad;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #7e705a !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #bb9584;} 70 | .cm-s-ipython span.cm-atom {color: #a89bb9;} 71 | .cm-s-ipython span.cm-number {color: #a89bb9;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #beb55b;} 74 | .cm-s-ipython span.cm-keyword {color: #cb6077;} 75 | .cm-s-ipython span.cm-string {color: #f4bc87;} 76 | .cm-s-ipython span.cm-operator {color: #bb9584;} 77 | .cm-s-ipython span.cm-builtin {color: #a89bb9;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #beb55b;} 80 | .cm-s-ipython span.cm-variable-2 {color: #8ab3b5;} 81 | .cm-s-ipython span.cm-def {color: #d28b71;} 82 | .cm-s-ipython span.cm-error {background: #cb6077; color: #7e705a;} 83 | .cm-s-ipython span.cm-bracket {color: #645240;} 84 | .cm-s-ipython span.cm-tag {color: #cb6077;} 85 | .cm-s-ipython span.cm-link {color: #a89bb9;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #534636 !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-ocean-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Ocean Dark 4 | Author: Chris Kempson (http://chriskempson.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #2b303b;} 20 | a {color: #8fa1b3;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #dfe1e8;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #ab7967;} 33 | div.output_prompt {color: #b48ead;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #4f5b66; 37 | } 38 | div.output_area pre {font-weight: normal; color: #c0c5ce;} 39 | div.output_subarea {font-weight: normal; color: #c0c5ce;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #c0c5ce solid; 43 | color: #c0c5ce; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #c0c5ce;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #b48ead;} 50 | div.text_cell_render, div.output_html {color: #c0c5ce;} 51 | 52 | span.ansiblack {color: #343d46;} 53 | span.ansiblue {color: #96b5b4;} 54 | span.ansigray {color: #a7adba;} 55 | span.ansigreen {color: #a3be8c;} 56 | span.ansipurple {color: #b48ead;} 57 | span.ansired {color: #bf616a;} 58 | span.ansiyellow {color: #ebcb8b;} 59 | 60 | div.output_stderr {background-color: #bf616a;} 61 | div.output_stderr pre {color: #dfe1e8;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #2b303b; color: #dfe1e8;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #343d46 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #2b303b; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #65737e;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #a7adba !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #ab7967;} 70 | .cm-s-ipython span.cm-atom {color: #b48ead;} 71 | .cm-s-ipython span.cm-number {color: #b48ead;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #a3be8c;} 74 | .cm-s-ipython span.cm-keyword {color: #bf616a;} 75 | .cm-s-ipython span.cm-string {color: #ebcb8b;} 76 | .cm-s-ipython span.cm-operator {color: #ab7967;} 77 | .cm-s-ipython span.cm-builtin {color: #b48ead;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #a3be8c;} 80 | .cm-s-ipython span.cm-variable-2 {color: #8fa1b3;} 81 | .cm-s-ipython span.cm-def {color: #d08770;} 82 | .cm-s-ipython span.cm-error {background: #bf616a; color: #a7adba;} 83 | .cm-s-ipython span.cm-bracket {color: #c0c5ce;} 84 | .cm-s-ipython span.cm-tag {color: #bf616a;} 85 | .cm-s-ipython span.cm-link {color: #b48ead;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #dfe1e8 !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-ocean-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Ocean Light 4 | Author: Chris Kempson (http://chriskempson.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #eff1f5;} 20 | a {color: #8fa1b3;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #343d46;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #b48ead;} 33 | div.output_prompt {color: #ab7967;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #c0c5ce; 37 | } 38 | div.output_area pre {font-weight: normal; color: #4f5b66;} 39 | div.output_subarea {font-weight: normal; color: #4f5b66;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #65737e solid; 43 | color: #65737e; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #4f5b66;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #ab7967;} 50 | div.text_cell_render, div.output_html {color: #4f5b66;} 51 | 52 | span.ansiblack {color: #343d46;} 53 | span.ansiblue {color: #96b5b4;} 54 | span.ansigray {color: #a7adba;} 55 | span.ansigreen {color: #a3be8c;} 56 | span.ansipurple {color: #b48ead;} 57 | span.ansired {color: #bf616a;} 58 | span.ansiyellow {color: #ebcb8b;} 59 | 60 | div.output_stderr {background-color: #bf616a;} 61 | div.output_stderr pre {color: #dfe1e8;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #eff1f5; color: #343d46;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #dfe1e8 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #eff1f5; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #a7adba;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #65737e !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #ab7967;} 70 | .cm-s-ipython span.cm-atom {color: #b48ead;} 71 | .cm-s-ipython span.cm-number {color: #b48ead;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #a3be8c;} 74 | .cm-s-ipython span.cm-keyword {color: #bf616a;} 75 | .cm-s-ipython span.cm-string {color: #ebcb8b;} 76 | .cm-s-ipython span.cm-operator {color: #ab7967;} 77 | .cm-s-ipython span.cm-builtin {color: #b48ead;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #a3be8c;} 80 | .cm-s-ipython span.cm-variable-2 {color: #8fa1b3;} 81 | .cm-s-ipython span.cm-def {color: #d08770;} 82 | .cm-s-ipython span.cm-error {background: #bf616a; color: #65737e;} 83 | .cm-s-ipython span.cm-bracket {color: #4f5b66;} 84 | .cm-s-ipython span.cm-tag {color: #bf616a;} 85 | .cm-s-ipython span.cm-link {color: #b48ead;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #343d46 !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-twilight-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Twilight Dark 4 | Author: David Hart (http://hart-dev.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #1e1e1e;} 20 | a {color: #7587a6;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #c3c3c3;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #9b703f;} 33 | div.output_prompt {color: #9b859d;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #464b50; 37 | } 38 | div.output_area pre {font-weight: normal; color: #a7a7a7;} 39 | div.output_subarea {font-weight: normal; color: #a7a7a7;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #a7a7a7 solid; 43 | color: #a7a7a7; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #a7a7a7;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #9b859d;} 50 | div.text_cell_render, div.output_html {color: #a7a7a7;} 51 | 52 | span.ansiblack {color: #323537;} 53 | span.ansiblue {color: #afc4db;} 54 | span.ansigray {color: #838184;} 55 | span.ansigreen {color: #8f9d6a;} 56 | span.ansipurple {color: #9b859d;} 57 | span.ansired {color: #cf6a4c;} 58 | span.ansiyellow {color: #f9ee98;} 59 | 60 | div.output_stderr {background-color: #cf6a4c;} 61 | div.output_stderr pre {color: #c3c3c3;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #1e1e1e; color: #c3c3c3;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #323537 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #1e1e1e; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #5f5a60;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #838184 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #9b703f;} 70 | .cm-s-ipython span.cm-atom {color: #9b859d;} 71 | .cm-s-ipython span.cm-number {color: #9b859d;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #8f9d6a;} 74 | .cm-s-ipython span.cm-keyword {color: #cf6a4c;} 75 | .cm-s-ipython span.cm-string {color: #f9ee98;} 76 | .cm-s-ipython span.cm-operator {color: #9b703f;} 77 | .cm-s-ipython span.cm-builtin {color: #9b859d;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #8f9d6a;} 80 | .cm-s-ipython span.cm-variable-2 {color: #7587a6;} 81 | .cm-s-ipython span.cm-def {color: #cda869;} 82 | .cm-s-ipython span.cm-error {background: #cf6a4c; color: #838184;} 83 | .cm-s-ipython span.cm-bracket {color: #a7a7a7;} 84 | .cm-s-ipython span.cm-tag {color: #cf6a4c;} 85 | .cm-s-ipython span.cm-link {color: #9b859d;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #c3c3c3 !important;} 88 | -------------------------------------------------------------------------------- /ipython-3/output/base16-twilight-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Twilight Light 4 | Author: David Hart (http://hart-dev.com) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #ffffff;} 20 | a {color: #7587a6;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #323537;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #9b859d;} 33 | div.output_prompt {color: #9b703f;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #a7a7a7; 37 | } 38 | div.output_area pre {font-weight: normal; color: #464b50;} 39 | div.output_subarea {font-weight: normal; color: #464b50;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #5f5a60 solid; 43 | color: #5f5a60; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #464b50;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #9b703f;} 50 | div.text_cell_render, div.output_html {color: #464b50;} 51 | 52 | span.ansiblack {color: #323537;} 53 | span.ansiblue {color: #afc4db;} 54 | span.ansigray {color: #838184;} 55 | span.ansigreen {color: #8f9d6a;} 56 | span.ansipurple {color: #9b859d;} 57 | span.ansired {color: #cf6a4c;} 58 | span.ansiyellow {color: #f9ee98;} 59 | 60 | div.output_stderr {background-color: #cf6a4c;} 61 | div.output_stderr pre {color: #c3c3c3;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #ffffff; color: #323537;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #c3c3c3 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #ffffff; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #838184;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #5f5a60 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #9b703f;} 70 | .cm-s-ipython span.cm-atom {color: #9b859d;} 71 | .cm-s-ipython span.cm-number {color: #9b859d;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #8f9d6a;} 74 | .cm-s-ipython span.cm-keyword {color: #cf6a4c;} 75 | .cm-s-ipython span.cm-string {color: #f9ee98;} 76 | .cm-s-ipython span.cm-operator {color: #9b703f;} 77 | .cm-s-ipython span.cm-builtin {color: #9b859d;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #8f9d6a;} 80 | .cm-s-ipython span.cm-variable-2 {color: #7587a6;} 81 | .cm-s-ipython span.cm-def {color: #cda869;} 82 | .cm-s-ipython span.cm-error {background: #cf6a4c; color: #5f5a60;} 83 | .cm-s-ipython span.cm-bracket {color: #464b50;} 84 | .cm-s-ipython span.cm-tag {color: #cf6a4c;} 85 | .cm-s-ipython span.cm-link {color: #9b859d;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #323537 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-apathy-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Apathy Dark 4 | Author: Jannik Siebert (https://github.com/janniks) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #031A16;} 20 | a {color: #96883E;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #A7CEC8;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #3E965B;} 33 | div.output_prompt {color: #4C963E;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #184E45; 37 | } 38 | div.output_area pre {font-weight: normal; color: #81B5AC;} 39 | div.output_subarea {font-weight: normal; color: #81B5AC;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #81B5AC solid; 43 | color: #81B5AC; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #81B5AC;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #4C963E;} 50 | div.text_cell_render, div.output_html {color: #81B5AC;} 51 | 52 | span.ansiblack {color: #0B342D;} 53 | span.ansiblue {color: #963E4C;} 54 | span.ansigray {color: #5F9C92;} 55 | span.ansigreen {color: #883E96;} 56 | span.ansipurple {color: #4C963E;} 57 | span.ansired {color: #3E9688;} 58 | span.ansiyellow {color: #3E4C96;} 59 | 60 | div.output_stderr {background-color: #3E9688;} 61 | div.output_stderr pre {color: #A7CEC8;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #031A16; color: #A7CEC8;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #0B342D !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #031A16; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #2B685E;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #5F9C92 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #3E965B;} 70 | .cm-s-ipython span.cm-atom {color: #4C963E;} 71 | .cm-s-ipython span.cm-number {color: #4C963E;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #883E96;} 74 | .cm-s-ipython span.cm-keyword {color: #3E9688;} 75 | .cm-s-ipython span.cm-string {color: #3E4C96;} 76 | .cm-s-ipython span.cm-operator {color: #3E965B;} 77 | .cm-s-ipython span.cm-builtin {color: #4C963E;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #883E96;} 80 | .cm-s-ipython span.cm-variable-2 {color: #96883E;} 81 | .cm-s-ipython span.cm-def {color: #3E7996;} 82 | .cm-s-ipython span.cm-error {background: #3E9688; color: #5F9C92;} 83 | .cm-s-ipython span.cm-bracket {color: #81B5AC;} 84 | .cm-s-ipython span.cm-tag {color: #3E9688;} 85 | .cm-s-ipython span.cm-link {color: #4C963E;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #A7CEC8 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-apathy-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Apathy Light 4 | Author: Jannik Siebert (https://github.com/janniks) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #D2E7E4;} 20 | a {color: #96883E;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #0B342D;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #4C963E;} 33 | div.output_prompt {color: #3E965B;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #81B5AC; 37 | } 38 | div.output_area pre {font-weight: normal; color: #184E45;} 39 | div.output_subarea {font-weight: normal; color: #184E45;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #2B685E solid; 43 | color: #2B685E; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #184E45;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #3E965B;} 50 | div.text_cell_render, div.output_html {color: #184E45;} 51 | 52 | span.ansiblack {color: #0B342D;} 53 | span.ansiblue {color: #963E4C;} 54 | span.ansigray {color: #5F9C92;} 55 | span.ansigreen {color: #883E96;} 56 | span.ansipurple {color: #4C963E;} 57 | span.ansired {color: #3E9688;} 58 | span.ansiyellow {color: #3E4C96;} 59 | 60 | div.output_stderr {background-color: #3E9688;} 61 | div.output_stderr pre {color: #A7CEC8;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #D2E7E4; color: #0B342D;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #A7CEC8 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #D2E7E4; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #5F9C92;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #2B685E !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #3E965B;} 70 | .cm-s-ipython span.cm-atom {color: #4C963E;} 71 | .cm-s-ipython span.cm-number {color: #4C963E;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #883E96;} 74 | .cm-s-ipython span.cm-keyword {color: #3E9688;} 75 | .cm-s-ipython span.cm-string {color: #3E4C96;} 76 | .cm-s-ipython span.cm-operator {color: #3E965B;} 77 | .cm-s-ipython span.cm-builtin {color: #4C963E;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #883E96;} 80 | .cm-s-ipython span.cm-variable-2 {color: #96883E;} 81 | .cm-s-ipython span.cm-def {color: #3E7996;} 82 | .cm-s-ipython span.cm-error {background: #3E9688; color: #2B685E;} 83 | .cm-s-ipython span.cm-bracket {color: #184E45;} 84 | .cm-s-ipython span.cm-tag {color: #3E9688;} 85 | .cm-s-ipython span.cm-link {color: #4C963E;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #0B342D !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-ashes-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Ashes Dark 4 | Author: Jannik Siebert (https://github.com/janniks) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #1C2023;} 20 | a {color: #AE95C7;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list_container {color: #DFE2E5;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #C79595;} 33 | div.output_prompt {color: #C795AE;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #565E65; 37 | } 38 | div.output_area pre {font-weight: normal; color: #C7CCD1;} 39 | div.output_subarea {font-weight: normal; color: #C7CCD1;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #C7CCD1 solid; 43 | color: #C7CCD1; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #C7CCD1;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #C795AE;} 50 | div.text_cell_render, div.output_html {color: #C7CCD1;} 51 | 52 | span.ansiblack {color: #393F45;} 53 | span.ansiblue {color: #95AEC7;} 54 | span.ansigray {color: #ADB3BA;} 55 | span.ansigreen {color: #95C7AE;} 56 | span.ansipurple {color: #C795AE;} 57 | span.ansired {color: #C7AE95;} 58 | span.ansiyellow {color: #AEC795;} 59 | 60 | div.output_stderr {background-color: #C7AE95;} 61 | div.output_stderr pre {color: #DFE2E5;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #1C2023; color: #DFE2E5;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #393F45 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #1C2023; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #747C84;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #ADB3BA !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #C79595;} 70 | .cm-s-ipython span.cm-atom {color: #C795AE;} 71 | .cm-s-ipython span.cm-number {color: #C795AE;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #95C7AE;} 74 | .cm-s-ipython span.cm-keyword {color: #C7AE95;} 75 | .cm-s-ipython span.cm-string {color: #AEC795;} 76 | .cm-s-ipython span.cm-operator {color: #C79595;} 77 | .cm-s-ipython span.cm-builtin {color: #C795AE;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #95C7AE;} 80 | .cm-s-ipython span.cm-variable-2 {color: #AE95C7;} 81 | .cm-s-ipython span.cm-def {color: #C7C795;} 82 | .cm-s-ipython span.cm-error {background: #C7AE95; color: #ADB3BA;} 83 | .cm-s-ipython span.cm-bracket {color: #C7CCD1;} 84 | .cm-s-ipython span.cm-tag {color: #C7AE95;} 85 | .cm-s-ipython span.cm-link {color: #C795AE;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #DFE2E5 !important;} 88 | -------------------------------------------------------------------------------- /ipython-2/output/base16-ashes-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Ashes Light 4 | Author: Jannik Siebert (https://github.com/janniks) 5 | 6 | CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) 7 | CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) 8 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 9 | 10 | */ 11 | 12 | /* Uncomment to use a custom font 13 | div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { 14 | font-family: 'Custom Font Name', monospace !important; 15 | } 16 | */ 17 | 18 | /* GLOBALS */ 19 | body {background-color: #F3F4F5;} 20 | a {color: #AE95C7;} 21 | 22 | /* INTRO PAGE */ 23 | .toolbar_info, .list-container {color: #393F45;} 24 | 25 | /* NOTEBOOK */ 26 | 27 | /* comment out this line to bring the toolbar back */ 28 | div#maintoolbar, div#header {display: none !important;} 29 | 30 | div#notebook {border-top: none;} 31 | 32 | div.input_prompt {color: #C795AE;} 33 | div.output_prompt {color: #C79595;} 34 | div.input_area { 35 | border-radius: 0px; 36 | border: 1px solid #C7CCD1; 37 | } 38 | div.output_area pre {font-weight: normal; color: #565E65;} 39 | div.output_subarea {font-weight: normal; color: #565E65;} 40 | 41 | .rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { 42 | border: 1px #747C84 solid; 43 | color: #747C84; 44 | } 45 | div.output_html { font-family: sans-serif; } 46 | table.dataframe tr {border: 1px #565E65;} 47 | 48 | div.cell.selected {border-radius: 0px;} 49 | div.cell.edit_mode {border-radius: 0px; border: thin solid #C79595;} 50 | div.text_cell_render, div.output_html {color: #565E65;} 51 | 52 | span.ansiblack {color: #393F45;} 53 | span.ansiblue {color: #95AEC7;} 54 | span.ansigray {color: #ADB3BA;} 55 | span.ansigreen {color: #95C7AE;} 56 | span.ansipurple {color: #C795AE;} 57 | span.ansired {color: #C7AE95;} 58 | span.ansiyellow {color: #AEC795;} 59 | 60 | div.output_stderr {background-color: #C7AE95;} 61 | div.output_stderr pre {color: #DFE2E5;} 62 | 63 | .cm-s-ipython.CodeMirror {background: #F3F4F5; color: #393F45;} 64 | .cm-s-ipython div.CodeMirror-selected {background: #DFE2E5 !important;} 65 | .cm-s-ipython .CodeMirror-gutters {background: #F3F4F5; border-right: 0px;} 66 | .cm-s-ipython .CodeMirror-linenumber {color: #ADB3BA;} 67 | .cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #747C84 !important;} 68 | 69 | .cm-s-ipython span.cm-comment {color: #C79595;} 70 | .cm-s-ipython span.cm-atom {color: #C795AE;} 71 | .cm-s-ipython span.cm-number {color: #C795AE;} 72 | 73 | .cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #95C7AE;} 74 | .cm-s-ipython span.cm-keyword {color: #C7AE95;} 75 | .cm-s-ipython span.cm-string {color: #AEC795;} 76 | .cm-s-ipython span.cm-operator {color: #C79595;} 77 | .cm-s-ipython span.cm-builtin {color: #C795AE;} 78 | 79 | .cm-s-ipython span.cm-variable {color: #95C7AE;} 80 | .cm-s-ipython span.cm-variable-2 {color: #AE95C7;} 81 | .cm-s-ipython span.cm-def {color: #C7C795;} 82 | .cm-s-ipython span.cm-error {background: #C7AE95; color: #747C84;} 83 | .cm-s-ipython span.cm-bracket {color: #565E65;} 84 | .cm-s-ipython span.cm-tag {color: #C7AE95;} 85 | .cm-s-ipython span.cm-link {color: #C795AE;} 86 | 87 | .cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #393F45 !important;} 88 | --------------------------------------------------------------------------------