Created
October 15, 2014 20:21
-
-
Save c3h3/74d5ce0bb3448823363e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Name: Base16 Default Dark | |
Author: Chris Kempson (http://chriskempson.com) | |
CodeMirror template adapted for IPython Notebook by Nikhil Sonnad (https://github.com/nsonnad/base16-ipython-notebook) | |
CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-chrome-devtools) | |
Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) | |
*/ | |
/* Uncomment to use a custom font | |
div#notebook, div.CodeMirror, div.output_area pre, div.output_wrapper, div.prompt { | |
font-family: 'Custom Font Name', monospace !important; | |
} | |
*/ | |
/* GLOBALS */ | |
body {background-color: #151515;} | |
a {color: #6a9fb5;} | |
/* INTRO PAGE */ | |
.toolbar_info, .list_container {color: #e0e0e0;} | |
/* NOTEBOOK */ | |
/* comment out this line to bring the toolbar back */ | |
div#maintoolbar, div#header {display: none !important;} | |
/*div#header {color: #323e42; background-color: #8A879C;} | |
div#maintoolbar {color: #323e42; | |
background-color: #8A879C; -webkit-transform:translateY(-2.7em); | |
position:relative; | |
z-index: 1;} | |
div#maintoolbar:hover {color: #323e42; background-color: #8A879C; -webkit-transform:translateY(0em); transition-duration:1s;} | |
div#menubar {position:relative;z-index:2;} | |
*/ | |
div#notebook {border-top: none;} | |
div.input_prompt {color: #8f5536;} | |
div.output_prompt {color: #2FDBE1;} | |
div.input_area { | |
border-radius: 0px; | |
border: 1px solid #303030; | |
} | |
div.output_area pre {font-weight: normal; color: #0CA9AE;} | |
div.output_subarea {font-weight: normal; color: #0CA9AE;} | |
.rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td { | |
border: 1px #d0d0d0 solid; | |
color: #d0d0d0; | |
} | |
div.output_html { font-family: sans-serif; } | |
table.dataframe tr {border: 1px #d0d0d0;} | |
div.cell.selected {border-radius: 0px;} | |
div.cell.edit_mode {border-radius: 0px; border: thin solid #2FDBE1;} | |
div.text_cell_render, div.output_html {color: #d0d0d0;} | |
span.ansiblack {color: #202020;} | |
span.ansiblue {color: #75b5aa;} | |
span.ansigray {color: #b0b0b0;} | |
span.ansigreen {color: #90a959;} | |
span.ansipurple {color: #aa759f;} | |
span.ansired {color: #ac4142;} | |
span.ansiyellow {color: #f4bf75;} | |
div.output_stderr {background-color: #ac4142;} | |
div.output_stderr pre {color: #e0e0e0;} | |
.cm-s-ipython.CodeMirror {background: #151515; color: #e0e0e0;} | |
.cm-s-ipython div.CodeMirror-selected {background: #909090 !important;} | |
.cm-s-ipython .CodeMirror-gutters {background: #151515; border-right: 0px;} | |
.cm-s-ipython .CodeMirror-linenumber {color: #505050;} | |
.cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #b0b0b0 !important;} | |
.cm-s-ipython span.cm-comment {color: #8f5536;} | |
.cm-s-ipython span.cm-atom {color: #aa759f;} | |
.cm-s-ipython span.cm-number {color: #A34800;} | |
.cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #90a959;} | |
.cm-s-ipython span.cm-keyword {color: #DDAD56;} | |
.cm-s-ipython span.cm-string {color: #24A70F;} | |
.cm-s-ipython span.cm-operator {color: #F2F2F2;} | |
.cm-s-ipython span.cm-builtin {color: #DDAD56;} | |
.cm-s-ipython span.cm-variable {color: #F2F2F2;} | |
.cm-s-ipython span.cm-variable-2 {color: #6a9fb5;} | |
.cm-s-ipython span.cm-def {color: #d28445;} | |
.cm-s-ipython span.cm-error {background: #ac4142; color: #b0b0b0;} | |
.cm-s-ipython span.cm-bracket {color: #d0d0d0;} | |
.cm-s-ipython span.cm-tag {color: #ac4142;} | |
.cm-s-ipython span.cm-link {color: #aa759f;} | |
.cm-s-ipython .CodeMirror-matchingbracket { text-decoration: underline; color: #e0e0e0 !important;} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment