Skip to content

Instantly share code, notes, and snippets.

@WaylonWalker
Created January 28, 2020 22:20
Show Gist options
  • Save WaylonWalker/b082bda9c1ce1471ea0c940c836e5714 to your computer and use it in GitHub Desktop.
Save WaylonWalker/b082bda9c1ce1471ea0c940c836e5714 to your computer and use it in GitHub Desktop.
/*-----------------------------------------------------------------------------
| Copyright (c) Jupyter Development Team.
| Distributed under the terms of the Modified BSD License.
|----------------------------------------------------------------------------*/
/*
The following CSS variables define the main, public API for styling JupyterLab.
These variables should be used by all plugins wherever possible. In other
words, plugins should not define custom colors, sizes, etc unless absolutely
necessary. This enables users to change the visual theme of JupyterLab
by changing these variables.
Many variables appear in an ordered sequence (0,1,2,3). These sequences
are designed to work well together, so for example, `--jp-border-color1` should
be used with `--jp-layout-color1`. The numbers have the following meanings:
* 0: super-primary, reserved for special emphasis
* 1: primary, most important under normal situations
* 2: secondary, next most important under normal situations
* 3: tertiary, next most important under normal situations
Throughout JupyterLab, we are mostly following principles from Google's
Material Design when selecting colors. We are not, however, following
all of MD as it is not optimized for dense, information rich UIs.
NOTE FROM WAYLON
I have no idea where I originally found this to credit the original author,
but have been using this css with the stylus chrome plugin to give jupyterlab
a one-dark theme.
*/
:root {
/* Atom one dark colours */
--atom-one-dark-cyan: #56B6C2;
--atom-one-dark-blue: #61AFEF;
--atom-one-dark-bg-1: #121417;
--atom-one-dark-mono-2: #828997;
--atom-one-dark-red-1: #E06C75;
--atom-one-dark-mono-1: #ABB2BF;
--atom-one-dark-silver: #AAAAAA;
--atom-one-dark-purple: #C678DD;
--atom-one-dark-orange-2: #E5C07B;
--atom-one-dark-bg-hl: #2F343D;
--atom-one-dark-black: #0F1011;
--atom-one-dark-gutter: #666D7A;
--atom-one-dark-fg: #ABB2BF;
--atom-one-dark-green: #98C379;
--atom-one-dark-red-2: #BE5046;
--atom-one-dark-orange-1: #D19A66;
--atom-one-dark-mono-3: #5C6370;
--atom-one-dark-accent: #AEB9F5;
--atom-one-dark-bg: #282C34;
--atom-one-dark-gray: #3E4451;
/* Elevation
*
* We style box-shadows using Material Design's idea of elevation. These particular numbers are taken from here:
*
* https://github.com/material-components/material-components-web
* https://material-components-web.appspot.com/elevation.html
*/
/* The dark theme shadows need a bit of work, but this will probably also require work on the core layout
* colors used in the theme as well. */
--jp-shadow-base-lightness: 32;
--jp-shadow-umbra-color: rgba(var(--jp-shadow-base-lightness), var(--jp-shadow-base-lightness), var(--jp-shadow-base-lightness), 0.2);
/* shadow under menus */
--jp-shadow-penumbra-color: rgba(var(--jp-shadow-base-lightness), var(--jp-shadow-base-lightness), var(--jp-shadow-base-lightness), 0.14);
/* glow under menus */
--jp-shadow-ambient-color: rgba(var(--jp-shadow-base-lightness), var(--jp-shadow-base-lightness), var(--jp-shadow-base-lightness), 0.12);
/* same? */
--jp-elevation-z0: none;
--jp-elevation-z1: 0px 2px 1px -1px var(--jp-shadow-umbra-color),
0px 1px 1px 0px var(--jp-shadow-penumbra-color),
0px 1px 3px 0px var(--jp-shadow-ambient-color);
--jp-elevation-z2: 0px 3px 1px -2px var(--jp-shadow-umbra-color),
0px 2px 2px 0px var(--jp-shadow-penumbra-color),
0px 1px 5px 0px var(--jp-shadow-ambient-color);
--jp-elevation-z4: 0px 2px 4px -1px var(--jp-shadow-umbra-color),
0px 4px 5px 0px var(--jp-shadow-penumbra-color),
0px 1px 10px 0px var(--jp-shadow-ambient-color);
--jp-elevation-z6: 0px 3px 5px -1px var(--jp-shadow-umbra-color),
0px 6px 10px 0px var(--jp-shadow-penumbra-color),
0px 1px 18px 0px var(--jp-shadow-ambient-color);
--jp-elevation-z8: 0px 5px 5px -3px var(--jp-shadow-umbra-color),
0px 8px 10px 1px var(--jp-shadow-penumbra-color),
0px 3px 14px 2px var(--jp-shadow-ambient-color);
--jp-elevation-z12: 0px 7px 8px -4px var(--jp-shadow-umbra-color),
0px 12px 17px 2px var(--jp-shadow-penumbra-color),
0px 5px 22px 4px var(--jp-shadow-ambient-color);
--jp-elevation-z16: 0px 8px 10px -5px var(--jp-shadow-umbra-color),
0px 16px 24px 2px var(--jp-shadow-penumbra-color),
0px 6px 30px 5px var(--jp-shadow-ambient-color);
--jp-elevation-z20: 0px 10px 13px -6px var(--jp-shadow-umbra-color),
0px 20px 31px 3px var(--jp-shadow-penumbra-color),
0px 8px 38px 7px var(--jp-shadow-ambient-color);
--jp-elevation-z24: 0px 11px 15px -7px var(--jp-shadow-umbra-color),
0px 24px 38px 3px var(--jp-shadow-penumbra-color),
0px 9px 46px 8px var(--jp-shadow-ambient-color);
/* Custom kernel running icon */
--jp-icon-kernel-running: url("data:image/svg+xml,%3Csvg fill='#98C379' xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z'/%3E%3C/svg%3E");
--jp-icon-circle: url("data:image/svg+xml,%3Csvg fill='#98C379' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath fill='none' d='M0 0h18v18H0V0z'/%3E%3Ccircle cx='9' cy='9' r='8'/%3E%3C/svg%3E");
--jp-icon-run: url("data:image/svg+xml,%3Csvg fill='#98C379' height='18' viewBox='0 0 24 24' width='18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
--jp-icon-stop: url("data:image/svg+xml,%3Csvg fill='#E06C75' height='18' viewBox='0 0 24 24' width='18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M6 6h12v12H6z'/%3E%3C/svg%3E");
/*--jp-icon-refresh: url("data:image/svg+xml,%3Csvg fill='#D19A66' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M13.7 4.3C12.5 3.1 10.8 2.4 9 2.4c-3.6 0-6.6 3-6.6 6.6s2.9 6.6 6.6 6.6c3.1 0 5.6-2.1 6.4-5h-1.7c-.7 1.9-2.5 3.3-4.7 3.3-2.7 0-5-2.2-5-4.9s2.2-4.9 5-4.9c1.4 0 2.6.6 3.5 1.5L9.8 8.2h5.8V2.4l-1.9 1.9z'/%3E%3Cpath fill='none' d='M0 0h18v18H0V0z'/%3E%3C/svg%3E");
--jp-icon-refresh-default: url("data:image/svg+xml,%3Csvg fill='%23E0E0E0' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M13.7 4.3C12.5 3.1 10.8 2.4 9 2.4c-3.6 0-6.6 3-6.6 6.6s2.9 6.6 6.6 6.6c3.1 0 5.6-2.1 6.4-5h-1.7c-.7 1.9-2.5 3.3-4.7 3.3-2.7 0-5-2.2-5-4.9s2.2-4.9 5-4.9c1.4 0 2.6.6 3.5 1.5L9.8 8.2h5.8V2.4l-1.9 1.9z'/%3E%3Cpath fill='none' d='M0 0h18v18H0V0z'/%3E%3C/svg%3E");
/* Borders
*
* The following variables, specify the visual styling of borders in JupyterLab.
*/
--jp-border-width: 1px;
--jp-border-color0: var(--atom-one-dark-gray);
--jp-border-color1: var(--atom-one-dark-gray);
--jp-border-color2: var(--atom-one-dark-gray);
--jp-border-color3: var(--atom-one-dark-gray);
--jp-border-radius: 1px;
/* UI Fonts
*
* The UI font CSS variables are used for the typography all of the JupyterLab
* user interface elements that are not directly user generated content.
*
* The font sizing here is done assuming that the body font size of --jp-ui-font-size1
* is applied to a parent element. When children elements, such as headings, are sized
* in em all things will be computed relative to that body size.
*/
--jp-ui-font-scale-factor: 1.2;
--jp-ui-font-size0: 0.83333em;
--jp-ui-font-size1: 12px;
/* Base font size */
--jp-ui-font-size2: 1.2em;
--jp-ui-font-size3: 1.44em;
--jp-ui-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
/*
* Use these font colors against the corresponding main layout colors.
* In a light theme, these go from dark to light.
*/
/* Defaults use Material Design specification */
--jp-ui-font-color0: var(--atom-one-dark-mono-1);
--jp-ui-font-color1: var(--atom-one-dark-mono-1);
--jp-ui-font-color2: var(--atom-one-dark-mono-1);
--jp-ui-font-color3: var(--atom-one-dark-mono-1);
/*
* Use these against the brand/accent/warn/error colors.
* These will typically go from light to darker, in both a dark and light theme.
*/
--jp-ui-inverse-font-color0: rgba(0, 0, 0, 1.0);
--jp-ui-inverse-font-color1: rgba(0, 0, 0, 0.8);
--jp-ui-inverse-font-color2: rgba(0, 0, 0, 0.5);
--jp-ui-inverse-font-color3: rgba(0, 0, 0, 0.3);
/* Content Fonts
*
* Content font variables are used for typography of user generated content.
*
* The font sizing here is done assuming that the body font size of --jp-content-font-size1
* is applied to a parent element. When children elements, such as headings, are sized
* in em all things will be computed relative to that body size.
*/
--jp-content-line-height: 1.6;
--jp-content-font-scale-factor: 1.2;
--jp-content-font-size0: 0.83333em;
--jp-content-font-size1: 12px;
/* Base font size */
--jp-content-font-size2: 1.2em;
--jp-content-font-size3: 1.44em;
--jp-content-font-size4: 1.728em;
--jp-content-font-size5: 2.0736em;
/* This gives a magnification of about 125% in presentation mode over normal. */
--jp-content-presentation-font-size1: 17px;
--jp-content-heading-line-height: 1;
--jp-content-heading-margin-top: 1.2em;
--jp-content-heading-margin-bottom: 0.8em;
--jp-content-heading-font-weight: 500;
/* Defaults use Material Design specification */
--jp-content-font-color0: rgba(255, 255, 255, 1.0);
--jp-content-font-color1: var(--atom-one-dark-fg);
/* this will colour all markdown and output text */
--jp-content-font-color2: rgba(255, 255, 255, 0.7);
--jp-content-font-color3: rgba(255, 255, 255, 0.5);
--jp-content-link-color: var(--md-blue-300);
--jp-content-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
/*
* Code Fonts
*
* Code font variables are used for typography of code and other monospaces content.
*/
--jp-code-font-size: 12px;
--jp-code-line-height: 1.3077;
/* 17px for 13px base */
--jp-code-padding: 0.385em;
/* 5px for 13px base */
--jp-code-font-family: 'Consolas', monospace;
/*--jp-code-font-family: 'Source Code Pro', monospace;*/
/* This gives a magnification of about 125% in presentation mode over normal. */
--jp-code-presentation-font-size: 16px;
/* Layout
*
* The following are the main layout colors use in JupyterLab. In a light
* theme these would go from light to dark.
*/
--jp-layout-color0: #111111;
--jp-layout-color1: var(--md-grey-900);
--jp-layout-color2: var(--atom-one-dark-bg-hl);
/* these are for unselected tabs amongst other things... */
--jp-layout-color3: var(--atom-one-dark-bg-hl);
/* this is for the area behind the tabs of the notebooks open */
--jp-layout-color4: var(--atom-one-dark-bg-1);
/* Brand/accent */
--jp-brand-color0: var(--md-blue-700);
--jp-brand-color1: var(--atom-one-dark-blue);
/* selected cell colour, bar to left of cell, selected file in browser */
--jp-brand-color2: var(--md-blue-300);
--jp-brand-color3: var(--md-blue-100);
--jp-accent-color0: var(--md-green-700);
--jp-accent-color1: var(--md-green-500);
--jp-accent-color2: var(--md-green-300);
--jp-accent-color3: var(--md-green-100);
/* State colors (warn, error, success, info) */
--jp-warn-color0: var(--md-orange-700);
--jp-warn-color1: var(--md-orange-500);
--jp-warn-color2: var(--md-orange-300);
--jp-warn-color3: var(--md-orange-100);
--jp-error-color0: var(--md-red-700);
--jp-error-color1: var(--md-red-500);
--jp-error-color2: var(--md-red-300);
--jp-error-color3: var(--md-red-100);
--jp-success-color0: var(--md-green-700);
--jp-success-color1: var(--md-green-500);
--jp-success-color2: var(--md-green-300);
--jp-success-color3: var(--md-green-100);
--jp-info-color0: var(--md-cyan-700);
--jp-info-color1: var(--md-cyan-500);
--jp-info-color2: var(--md-cyan-300);
--jp-info-color3: var(--md-cyan-100);
/* Cell specific styles */
--jp-cell-padding: 0px 10px 10px 0px;
/* T R B L */
--jp-cell-collapser-width: 8px;
--jp-cell-collapser-min-height: 20px;
--jp-cell-collapser-not-active-hover-opacity: 0.6;
--jp-cell-editor-background: var(--atom-one-dark-bg);
/* background colour of all cells */
--jp-cell-editor-border-color: var(--atom-one-dark-gray);
--jp-cell-editor-box-shadow: inset 0 0 2px var(--md-blue-300);
--jp-cell-editor-active-background: var(--jp-layout-color0);
/* background colour of current cell */
--jp-cell-editor-active-border-color: var(--jp-brand-color1);
/* border colour of current cell */
--jp-cell-prompt-width: 75px;
/* width of cell thing to left of active cell */
--jp-cell-prompt-font-family: 'Consolas', monospace;
--jp-cell-prompt-letter-spacing: 0px;
--jp-cell-prompt-opacity: 1.0;
--jp-cell-prompt-not-active-opacity: 1.0;
--jp-cell-prompt-not-active-font-color: var(--atom-one-dark-mono-1);
--jp-cell-inprompt-font-color: var(--jp-brand-color1);
--jp-cell-outprompt-font-color: var(--atom-one-dark-mono-1);
/* Notebook specific styles */
--jp-notebook-padding: 0px 10px 0px 0px;
/* default 10 */
--jp-notebook-scroll-padding: 100px;
--jp-notebook-select-background: var(--jp-layout-color1);
--jp-notebook-multiselected-color: rgba(33, 150, 243, .24);
/* multi select colour */
/* Rendermime styles */
--jp-rendermime-error-background: rgba(244, 67, 54, .28);
--jp-rendermime-table-row-background: var(--md-grey-900);
--jp-rendermime-table-row-hover-background: rgba(3, 169, 244, .2);
/* Dialog specific styles */
--jp-dialog-background: rgba(0, 0, 0, .6);
/* Console specific styles */
--jp-console-padding: 10px;
/* Toolbar specific styles */
--jp-toolbar-border-color: var(--jp-border-color2);
--jp-toolbar-micro-height: 8px;
--jp-toolbar-background: var(--jp-layout-color1);
--jp-toolbar-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.8);
--jp-toolbar-header-margin: 4px 4px 0px 4px;
--jp-toolbar-active-background: var(--jp-layout-color0);
/* Input field styles */
--jp-input-box-shadow: inset 0 0 2px var(--md-blue-300);
--jp-input-active-background: var(--jp-layout-color0);
--jp-input-hover-background: var(--jp-layout-color2);
--jp-input-background: var(--md-grey-800);
--jp-input-border-color: var(--jp-border-color1);
--jp-input-active-border-color: var(--jp-brand-color1);
/* General editor styles */
--jp-editor-selected-background: var(--jp-layout-color2);
--jp-editor-selected-focused-background: rgba(33, 150, 243, .24);
--jp-editor-cursor-color: var(--atom-one-dark-blue);
/* Code mirror specific styles */
--jp-mirror-editor-keyword-color: var(--atom-one-dark-purple);
--jp-mirror-editor-atom-color: var(--md-blue-300);
--jp-mirror-editor-number-color: var(--atom-one-dark-orange-1);
--jp-mirror-editor-def-color: var(--atom-one-dark-blue);
--jp-mirror-editor-variable-color: var(--atom-one-dark-mono-1);
--jp-mirror-editor-variable-2-color: var(--atom-one-dark-mono-1);
--jp-mirror-editor-variable-3-color: var(--md-grey-600);
--jp-mirror-editor-punctuation-color: var(--atom-one-dark-mono-1);
--jp-mirror-editor-property-color: var(--atom-one-dark-red-1);
--jp-mirror-editor-operator-color: var(--atom-one-dark-mono-1);
--jp-mirror-editor-comment-color: var(--atom-one-dark-mono-3);
--jp-mirror-editor-string-color: var(--atom-one-dark-green);
--jp-mirror-editor-string-2-color: #f50;
--jp-mirror-editor-meta-color: #AA22FF;
--jp-mirror-editor-qualifier-color: #555;
--jp-mirror-editor-builtin-color: var(--atom-one-dark-purple);
--jp-mirror-editor-bracket-color: var(--atom-one-dark-mono-1);
--jp-mirror-editor-tag-color: var(--md-green-700);
--jp-mirror-editor-attribute-color: var(--atom-one-dark-red-1);
--jp-mirror-editor-header-color: var(--md-blue-500);
--jp-mirror-editor-quote-color: var(--md-green-300);
--jp-mirror-editor-link-color: var(--atom-one-dark-red-1);
--jp-mirror-editor-error-color: #f00;
--jp-mirror-editor-hr-color: #FFFFFF;
/* Edit the background and stuff */
--jp-layout-color0: var(--atom-one-dark-bg);
--jp-layout-color1: var(--atom-one-dark-bg);
--jp-editor-selected-background: var(--atom-one-dark-bg-hl);
--jp-editor-selected-focused-background: var(--atom-one-dark-bg-hl);
/*--jp-layout-color0: #fcfcfd;
--jp-layout-color1: #ffffff;
--jp-editor-selected-background: #d9d9d9;
--jp-editor-selected-focused-background: #d7d4f0;
--jp-editor-cursor-color: var(--jp-ui-font-color0);
--jp-mirror-editor-keyword-color: #4c8bc3;
--jp-mirror-editor-atom-color: #88F;
--jp-mirror-editor-number-color: #de611e;
--jp-mirror-editor-def-color: #8c4ace;
--jp-mirror-editor-variable-color: var(--md-grey-900);
--jp-mirror-editor-variable-2-color: var(--md-grey-800);
--jp-mirror-editor-variable-3-color: var(--md-grey-700);
--jp-mirror-editor-punctuation-color: #05a;
--jp-mirror-editor-property-color: #05a;
--jp-mirror-editor-operator-color: #bb90d6;
--jp-mirror-editor-comment-color: #9ca2a2;
--jp-mirror-editor-string-color: #4a99f3;
--jp-mirror-editor-string-2-color: #ada;
--jp-mirror-editor-meta-color: #ff228f;
--jp-mirror-editor-qualifier-color: #7616d8;
--jp-mirror-editor-builtin-color: #cc0000;
--jp-mirror-editor-bracket-color: #997;
--jp-mirror-editor-tag-color: #170;
--jp-mirror-editor-attribute-color: #5a86dc;
--jp-mirror-editor-header-color: blue;
--jp-mirror-editor-quote-color: #090;
--jp-mirror-editor-link-color: #00c;
--jp-mirror-editor-error-color: #e627b5;
--jp-mirror-editor-hr-color: #999;
--jp-vega-background: #F5F5F5;
--jp-cell-editor-background: var(--md-grey-50);*/
/* Vega extension styles */
--jp-vega-background: var(--atom-one-dark-bg-1);
/*--jp-SideBar-background: var(--atom-one-dark-bg-1);*/
--jp-main-dock-panel-background: var(--atom-one-dark-bg-1);
}
/* Change the colour of linenumbers */
.CodeMirror-linenumber {
padding: 0 3px 0 5px;
min-width: 20px;
text-align: right;
color: var(--atom-one-dark-mono-1);
white-space: nowrap;
}
/* This is the region where the linenumbers are */
.CodeMirror-gutters {
border-right: 1px solid var(--atom-one-dark-bg-hl);
background-color: var(--atom-one-dark-bg);
white-space: nowrap;
}
/* Do some nice things with brackets */
div.CodeMirror span.CodeMirror-matchingbracket {
color: var(--atom-one-dark-mono-1);
border-bottom: 1px solid var(--atom-one-dark-blue);
line-height: 1;
}
div.CodeMirror span.CodeMirror-nonmatchingbracket {
color: var(--atom-one-dark-mono-1);
border-bottom: 1px solid var(--atom-one-dark-red-1);
line-height: 0.55;
}
.CodeMirror-matchingtag {
background: rgba(255, 150, 0, .3);
}
.CodeMirror-activeline-background {
background: #e8f2ff;
}
.CodeMirror-selected {
background: var(--atom-one-dark-bg-hl);
}
.CodeMirror-focused .CodeMirror-selected {
background: var(--atom-one-dark-bg-hl);
}
/* selected text highlight */
/* Item selected in menu for files and what not */
.jp-DirListing-item.jp-mod-selected {
color: white;
background: var(--atom-one-dark-bg-hl);
}
/* Makes the running icon a tiny bit bigger */
.jp-DirListing-item.jp-mod-running .jp-DirListing-itemIcon:before {
color: var(--atom-one-dark-green);
content: "\25CF";
font-size: 12px;
position: relative;
width: 100%;
height: 100%;
top: -2px;
left: -8px;
}
/*.jp-Toolbar-item.jp-Toolbar-kernelStatus {
display: inline-block;
width: 32px;
background-repeat: no-repeat;
background-position: center;
background-size: 16px;
color: black;
fill: green;
}*/
/* width */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
/* Track */
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0);
}
/* Handle */
::-webkit-scrollbar-thumb {
background: var(--atom-one-dark-mono-3);
border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: var(--atom-one-dark-mono-3);
}
/* Handle */
::-webkit-scrollbar-thumb:active {
background: var(--atom-one-dark-blue);
}
/* Controls colour of self */
.cm-s-jupyter span.cm-variable-2 {
color: var(--atom-one-dark-orange-1);
}
/* Controls colour of self */
.cm-s-jupyter span.cm-variable-3 {
color: var(--atom-one-dark-green);
}
/* Controls colour of built in like print, range, etc */
.cm-s-jupyter span.cm-builtin {
color: var(--atom-one-dark-cyan);
}
/* Center any plots e.g. Matplotlib plots */
.p-Widget.jp-RenderedImage.jp-mod-trusted.jp-OutputArea-output {
/*display: table-cell;*/
text-align: center;
/*vertical-align: middle;*/
}
.jp-Completer-item.jp-mod-active {
color: var(--atom-one-dark-fg);
background: var(--atom-one-dark-bg-hl);
}
/* Custom line rule */
.jp-RenderedHTMLCommon hr {
display: block;
margin-top: 0.5em;
margin-bottom: 0.5em;
margin-left: 0em;
margin-right: 0em;
border-style: inset;
border-width: 1px;
border-top: 1px solid var(--atom-one-dark-fg);
border-bottom: 1px solid var(--atom-one-dark-fg);
}
/* Markdown inline code */
.jp-RenderedHTMLCommon code {
background-color: var(--atom-one-dark-gray);
padding: 1px 3px;
}
.jp-MarkdownOutput {
flex: 1 1 auto;
margin-top: 0;
margin-bottom: 0;
padding-left: var(--jp-code-padding);
padding-right: var(--jp-code-padding);
}
.cm-s-zenburn {
background-color: var(--atom-one-dark-bg);
color: var(--atom-one-dark-fg);
}
.cm-s-zenburn .CodeMirror-gutters {
background: var(--atom-one-dark-bg) !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment