forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SecuritySolution] Update severity colors for Borealis theme (elastic…
…#206276) ## Summary Apply severity colors for Borealis theme. elastic#204007 (comment) Update:⚠️ As the final decision for severity color is still pending, the temporary colors are the hard coded color hex: elastic#203387 `TODO` Borealis migration - move from hardcoded values to severity palette elastic/security-team#11606 | Color token | Amsterdam|Borealis| |-------------|------------|------------| | Critical | euiThemeVars.euiColorDanger |```#E7664C```| | High | euiThemeVars.euiColorVis9_behindText |```#DA8B45``` | | Meduiml |euiThemeVars.euiColorVis5_behindText|```#D6BF57``` | | Low | euiThemeVars.euiColorVis0| ```#54B399``` | ### Running Kibana with the Borealis theme In order to run Kibana with Borealis, you'll need to do the following: Set the following in kibana.dev.yml: uiSettings.experimental.themeSwitcherEnabled: true Run Kibana with the following environment variable set: KBN_OPTIMIZER_THEMES="borealislight,borealisdark,v8light,v8dark" yarn start This will expose a toggle under Stack Management > Advanced Settings > Theme version, which you can use to toggle between Amsterdam and Borealis. ![Image](https://github.com/user-attachments/assets/78d64946-43fc-4400-bbb1-229d900b7f05) ### Checklist - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios --------- Co-authored-by: kibanamachine <[email protected]>
- Loading branch information
1 parent
7ca9ef3
commit 9333bf6
Showing
35 changed files
with
884 additions
and
590 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
...tions/security/plugins/security_solution/public/common/utils/__mocks__/severity_colors.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
import type { EuiThemeComputed } from '@elastic/eui'; | ||
|
||
export const getMockEuiAmsterdamTheme = () => | ||
({ | ||
themeName: 'EUI_THEME_AMSTERDAM', | ||
} as EuiThemeComputed); | ||
|
||
export const getMockEuiBorealisTheme = () => | ||
({ | ||
themeName: 'EUI_THEME_BOREALIS', | ||
} as EuiThemeComputed); |
67 changes: 67 additions & 0 deletions
67
...utions/security/plugins/security_solution/public/common/utils/risk_color_palette.test.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
import { renderHook } from '@testing-library/react'; | ||
import { getRiskSeverityColors, useRiskSeverityColors } from './risk_color_palette'; | ||
import { useEuiTheme } from '@elastic/eui'; | ||
import { getMockEuiAmsterdamTheme, getMockEuiBorealisTheme } from './__mocks__/severity_colors'; | ||
|
||
jest.mock('@elastic/eui', () => ({ | ||
useEuiTheme: jest.fn(), | ||
})); | ||
|
||
const EXPECTED_SEVERITY_COLOR_AMSTERDAM = { | ||
low: '#54b399', | ||
medium: '#f1d86f', | ||
high: '#ff7e62', | ||
critical: '#bd271e', | ||
}; | ||
|
||
const EXPECTED_SEVERITY_COLOR_BOREALIS = { | ||
low: '#54B399', | ||
medium: '#D6BF57', | ||
high: '#DA8B45', | ||
critical: '#E7664C', | ||
} as const; | ||
|
||
describe('risk_color_palette', () => { | ||
const scenarios = [ | ||
{ | ||
mockEuiTheme: getMockEuiAmsterdamTheme(), | ||
themeName: 'Amsterdam', | ||
expected: EXPECTED_SEVERITY_COLOR_AMSTERDAM, | ||
}, | ||
{ | ||
mockEuiTheme: getMockEuiBorealisTheme(), | ||
themeName: 'Borealis', | ||
expected: EXPECTED_SEVERITY_COLOR_BOREALIS, | ||
}, | ||
]; | ||
|
||
describe.each(scenarios)( | ||
'$themeName: getRiskSeverityColors', | ||
({ mockEuiTheme, themeName, expected }) => { | ||
it(`returns the correct colors for ${themeName} theme`, () => { | ||
expect(getRiskSeverityColors(mockEuiTheme)).toEqual(expected); | ||
}); | ||
} | ||
); | ||
|
||
describe.each(scenarios)( | ||
'$themeName: useRiskSeverityColors', | ||
({ mockEuiTheme, themeName, expected }) => { | ||
const useEuiThemeMock = useEuiTheme as jest.Mock; | ||
|
||
it(`returns the correct colors for ${themeName} theme`, () => { | ||
useEuiThemeMock.mockReturnValue({ | ||
euiTheme: mockEuiTheme, | ||
}); | ||
const { result } = renderHook(() => useRiskSeverityColors()); | ||
expect(result.current).toEqual(expected); | ||
}); | ||
} | ||
); | ||
}); |
47 changes: 47 additions & 0 deletions
47
...k/solutions/security/plugins/security_solution/public/common/utils/risk_color_palette.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
import type { EuiThemeComputed } from '@elastic/eui'; | ||
import { useEuiTheme } from '@elastic/eui'; | ||
import type { Severity } from '@kbn/securitysolution-io-ts-alerting-types'; | ||
import { useMemo } from 'react'; | ||
import { | ||
RISK_COLOR_CRITICAL, | ||
RISK_COLOR_HIGH, | ||
RISK_COLOR_LOW, | ||
RISK_COLOR_MEDIUM, | ||
} from '../constants'; | ||
|
||
// Temporary solution until we have a decision for color palette https://github.com/elastic/kibana/issues/203387 | ||
export const SEVERITY_COLOR = { | ||
low: '#54B399', | ||
medium: '#D6BF57', | ||
high: '#DA8B45', | ||
critical: '#E7664C', | ||
} as const; | ||
|
||
const isAmsterdam = (euiThemeName: string) => { | ||
return euiThemeName?.toLowerCase().includes('amsterdam'); | ||
}; | ||
|
||
export const getRiskSeverityColors = (euiTheme: EuiThemeComputed) => { | ||
if (euiTheme && isAmsterdam(euiTheme.themeName)) { | ||
return { | ||
low: RISK_COLOR_LOW, | ||
medium: RISK_COLOR_MEDIUM, | ||
high: RISK_COLOR_HIGH, | ||
critical: RISK_COLOR_CRITICAL, | ||
}; | ||
} | ||
return SEVERITY_COLOR; | ||
}; | ||
|
||
export const useRiskSeverityColors = (): Record<Severity, string> => { | ||
const { euiTheme } = useEuiTheme(); | ||
|
||
return useMemo(() => getRiskSeverityColors(euiTheme), [euiTheme]); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.