diff --git a/packages/grafana-data/src/field/fieldColor.ts b/packages/grafana-data/src/field/fieldColor.ts index 0fb824b0a6a..7e893af82eb 100644 --- a/packages/grafana-data/src/field/fieldColor.ts +++ b/packages/grafana-data/src/field/fieldColor.ts @@ -66,6 +66,13 @@ export const fieldColorModeRegistry = new Registry(() => { isByValue: true, colors: ['green', 'yellow', 'red'], }), + new FieldColorSchemeMode({ + id: 'continuous-RdYlGr', + name: 'Red-Yellow-Green', + isContinuous: true, + isByValue: true, + colors: ['red', 'yellow', 'green'], + }), new FieldColorSchemeMode({ id: 'continuous-BlYlRd', name: 'Blue-Yellow-Red',