From 9dae7b9f3030ff218dc5c13a037d981305c9dea8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Pior?= Date: Wed, 13 Jun 2018 14:59:24 +0200 Subject: [PATCH] #7517 change current and selected cell color in table --- js/notebook/src/BeakerXThemeHelper.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/notebook/src/BeakerXThemeHelper.ts b/js/notebook/src/BeakerXThemeHelper.ts index 0673dc0a59..fa950e072f 100644 --- a/js/notebook/src/BeakerXThemeHelper.ts +++ b/js/notebook/src/BeakerXThemeHelper.ts @@ -46,11 +46,11 @@ export default class BeakerXThemeHelper { } public static get FOCUSED_CELL_BACKGROUND(): string { - return this.isDark ? 'rgb(99, 99, 99)' : 'rgb(200, 200, 200)'; + return this.isDark ? '#198e1d' : '#c8c8c8'; } public static get SELECTED_CELL_BACKGROUND(): string { - return this.isDark ? '#4f4126' : '#B0BED9'; + return this.isDark ? '#266196' : '#B0BED9'; } public static get HIGHLIGHTED_CELL_BACKGROUND_EVEN(): string {