This commit is contained in:
rebornix
2020-07-09 16:27:39 -07:00
parent 2d5148e734
commit c2e6ca6233
@@ -1367,11 +1367,11 @@ export const notebookOutputContainerColor = registerColor('notebook.outputContai
}, nls.localize('notebook.outputContainerBackgroundColor', "The Color of the notebook output container background."));
// TODO currently also used for toolbar border, if we keep all of this, pick a generic name
export const CELL_TOOLBAR_SEPERATOR = registerColor('notebook.cellToolbarSeperator', {
export const CELL_TOOLBAR_SEPERATOR = registerColor('notebook.cellToolbarSeparator', {
dark: Color.fromHex('#808080').transparent(0.35),
light: Color.fromHex('#808080').transparent(0.35),
hc: contrastBorder
}, nls.localize('notebook.cellToolbarSeperator', "The color of the seperator in the cell bottom toolbar"));
}, nls.localize('notebook.cellToolbarSeparator', "The color of the seperator in the cell bottom toolbar"));
export const focusedCellBackground = registerColor('notebook.focusedCellBackground', {
dark: transparent(PANEL_BORDER, .4),