By default the panel just uses 'green', which with the light theme is too
dark, making the text on the panel difficult to read. This ansible step just
updates the color in the css to make the text more readable
- name: Update Grafana plugins
command: "grafana-cli plugins update {{ item }}"
with_items: "{{ grafana_plugins }}"
+
+- name: Update status-panel for readability within the 'light' theme
+ command: "sed -i.bak -e 's/green/rgb(1,167,1)/g' /var/lib/grafana/plugins/vonage-status-panel/dist/css/status_panel.css"