From 33772365302ca4a6888af3067f7a1f1006d8048b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Pior?= Date: Thu, 14 Jun 2018 13:04:57 +0200 Subject: [PATCH] #7517 change table selection and border colors --- js/notebook/src/BeakerXThemeHelper.ts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/js/notebook/src/BeakerXThemeHelper.ts b/js/notebook/src/BeakerXThemeHelper.ts index fa950e072f..c957199a8d 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 ? '#198e1d' : '#c8c8c8'; + return this.isDark ? '#66bb6a' : '#c8c8c8'; } public static get SELECTED_CELL_BACKGROUND(): string { - return this.isDark ? '#266196' : '#B0BED9'; + return this.isDark ? '#2196F3' : '#B0BED9'; } public static get HIGHLIGHTED_CELL_BACKGROUND_EVEN(): string { @@ -66,9 +66,10 @@ export default class BeakerXThemeHelper { ...DataGrid.defaultStyle, voidColor: '#636363', backgroundColor: '#212121', - headerBackgroundColor: '#212121', + headerBackgroundColor: '#252525', rowBackgroundColor: i => i % 2 === 0 ? '#424242' : '', - gridLineColor: '#111111' + gridLineColor: '#626262', + headerGridLineColor: '#626262', }; }