theme: fixed colors to be monaco-compatible (#43153)

This commit is contained in:
Gábor Farkas
2021-12-15 14:52:31 +01:00
committed by GitHub
parent f9b6baa783
commit 1569529808
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
export const palette = {
white: '#fff',
black: '#000',
white: '#FFFFFF',
black: '#000000',
gray25: '#2c3235',
gray15: '#22252b', //'#202226',

View File

@ -29,7 +29,7 @@ describe('ColorPickerPopover', () => {
expect(colorSwatchWrapper[0]).toBeInTheDocument();
userEvent.click(colorSwatchWrapper[0]);
expect(color).toHaveStyle('box-shadow: inset 0 0 0 2px #73BF69, inset 0 0 0 4px #000');
expect(color).toHaveStyle('box-shadow: inset 0 0 0 2px #73BF69, inset 0 0 0 4px #000000');
});
});