11 lines
288 B
TypeScript
11 lines
288 B
TypeScript
import { css } from '@emotion/css';
|
|
|
|
import { GrafanaTheme2 } from '@grafana/data';
|
|
|
|
export const getBadgeColor = (theme: GrafanaTheme2) =>
|
|
css({
|
|
background: theme.colors.background.primary,
|
|
borderColor: theme.colors.border.strong,
|
|
color: theme.colors.text.secondary,
|
|
});
|