(theme => ({
},
ringEmpty: {
color: theme.palette.text.secondary,
+ fontSize: '12px',
},
ringHeading: {
pointerEvents: 'none',
diff --git a/plugins/tech-radar/src/components/RadarLegend/RadarLegendRing.tsx b/plugins/tech-radar/src/components/RadarLegend/RadarLegendRing.tsx
index 68b42373f3..da5c10831e 100644
--- a/plugins/tech-radar/src/components/RadarLegend/RadarLegendRing.tsx
+++ b/plugins/tech-radar/src/components/RadarLegend/RadarLegendRing.tsx
@@ -37,7 +37,13 @@ export const RadarLegendRing = ({
}: RadarLegendRingProps) => {
return (
-
{ring.name}
+
+ {ring.name}
+
{entries.length === 0 ? (
(empty)
diff --git a/plugins/tech-radar/src/sample.ts b/plugins/tech-radar/src/sample.ts
index 395b4f2ff5..a967d2cbe7 100644
--- a/plugins/tech-radar/src/sample.ts
+++ b/plugins/tech-radar/src/sample.ts
@@ -23,10 +23,10 @@ import {
} from './api';
const rings = new Array();
-rings.push({ id: 'adopt', name: 'ADOPT', color: '#93c47d' });
-rings.push({ id: 'trial', name: 'TRIAL', color: '#93d2c2' });
-rings.push({ id: 'assess', name: 'ASSESS', color: '#fbdb84' });
-rings.push({ id: 'hold', name: 'HOLD', color: '#efafa9' });
+rings.push({ id: 'adopt', name: 'ADOPT', color: '#5BA300' });
+rings.push({ id: 'trial', name: 'TRIAL', color: '#009EB0' });
+rings.push({ id: 'assess', name: 'ASSESS', color: '#C7BA00' });
+rings.push({ id: 'hold', name: 'HOLD', color: '#E09B96' });
const quadrants = new Array();
quadrants.push({ id: 'infrastructure', name: 'Infrastructure' });