Skip to content

Commit

Permalink
#7517 change current and selected cell color in table
Browse files Browse the repository at this point in the history
  • Loading branch information
piorek committed Jun 13, 2018
1 parent 317fe78 commit 9dae7b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/notebook/src/BeakerXThemeHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 9dae7b9

Please sign in to comment.