17 lines
460 B
TypeScript
17 lines
460 B
TypeScript
import { css } from '@emotion/css';
|
|
|
|
import { GrafanaTheme2 } from '@grafana/data';
|
|
import { AlertState } from 'app/plugins/datasource/alertmanager/types';
|
|
|
|
export const getNotificationsTextColors = (theme: GrafanaTheme2) => ({
|
|
[AlertState.Active]: css({
|
|
color: theme.colors.error.text,
|
|
}),
|
|
[AlertState.Suppressed]: css({
|
|
color: theme.colors.primary.text,
|
|
}),
|
|
[AlertState.Unprocessed]: css({
|
|
color: theme.colors.secondary.text,
|
|
}),
|
|
});
|