From c3206167a65babd66ca4d590723c4fd754c4aad9 Mon Sep 17 00:00:00 2001 From: Ashley Harrison Date: Thu, 3 Nov 2022 10:45:57 +0000 Subject: [PATCH] increase select placeholder contrast to be WCAG AA compliant (#58034) --- packages/grafana-ui/src/components/Select/resetSelectStyles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/grafana-ui/src/components/Select/resetSelectStyles.ts b/packages/grafana-ui/src/components/Select/resetSelectStyles.ts index 014908000a3..fb844575d66 100644 --- a/packages/grafana-ui/src/components/Select/resetSelectStyles.ts +++ b/packages/grafana-ui/src/components/Select/resetSelectStyles.ts @@ -36,7 +36,7 @@ export default function resetSelectStyles(theme: GrafanaTheme2) { option: () => ({}), placeholder: (originalStyles: CSSObjectWithLabel): CSSObjectWithLabel => ({ ...originalStyles, - color: theme.colors.text.disabled, + color: theme.colors.text.secondary, }), singleValue: () => ({}), valueContainer: () => ({}),