2025-04-01 10:38:02 +09:00

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,
});