sharedStyles.ts 286 B

123456789
  1. import { css } from '@emotion/css';
  2. import { GrafanaTheme2 } from '@grafana/data';
  3. export const getBadgeColor = (theme: GrafanaTheme2) => css`
  4. background: ${theme.colors.background.primary};
  5. border-color: ${theme.colors.border.strong};
  6. color: ${theme.colors.text.secondary};
  7. `;