We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ea70a7 commit f7440aeCopy full SHA for f7440ae
packages/grafana-ui/src/components/DateTimePickers/TimeRangePicker/TimePickerFooter.tsx
@@ -56,6 +56,8 @@ export const TimePickerFooter: FC<Props> = (props) => {
56
return null;
57
}
58
59
+ const fnColor = theme.isDark ? '#8EC4AD' : '#3A785E';
60
+
61
return (
62
<div>
63
<section aria-label="Time zone selection" className={style.container}>
@@ -73,8 +75,8 @@ export const TimePickerFooter: FC<Props> = (props) => {
73
75
size="md"
74
76
style={{
77
backgroundColor: '#ffffff00',
- color: '#3A785E',
- border: '1px solid #3A785E',
78
+ color: fnColor,
79
+ border: `1px solid ${fnColor}`,
80
}}
81
>
82
Change time settings
0 commit comments