You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Colors were changed in 8.2 update. Details can be found here (RN: New colors of issue statuses).
I saw several threads and tickets mentioning this and the confusion this has created. You can like or dislike the colors. I do not like the new styles used, as it has been mentioned somewhere, even for color blindness it could be more difficult now to distinguish between these pastel tones.
Anyway, that discussion could be endless, and it could be just a matter of taste.
But at least to be consequent with this change Atlassian should have updated "Sprint Health Gadget". I know dashboards and gadgets have been forgotten for years, but some people are still using these things.
It is quite clear:
How can I explain above picture?
For Sprint progress, "In Progress" (it means, all statuses in that category) uses yellow.
But, for user stories status "IN PROGRESS" uses the new blue.
I think it's pretty obvious this change has an impact beyond personal tastes or color preferences.
Does the blue means "Open" (something pending) or "In Progress" (work in progress)
There is a ticket asking for a rollback or at least an option to use old colors:
I would suggest to the rest of the people facing this issue or thinking that this has been probably a wrong decision to vote for this change or option.
@Pawel Wodkowski , What is back port in Atlassian applications? e.g. LTS versions are back port supported. What does that mean to a layman users or admins? You said, "we will back port the fix to Jira 8.5". Has this been implemented? If so, why my Jira 8.5.0 Gadget shows the same old legacy color? JRASERVER-70207 closed without any workaround.
I am not sure how to modify the pattern. Can @Javier Carazo or @Pawel Wodkowski explain about this?
For Anyone that could be interested on this, there is an option to tweak status label colours and set them back to original palette.
Credits go to : Putri Nur Dayana Kamarudin
She suggested to use CSS Styles in announcement banner, I just adapted and extended CSS example provided.
Use bellow code to get back to BLUE/YELLOW/GREEN colours.
<style type="text/css"> .aui-lozenge.jira-issue-status-lozenge-yellow, .aui-lozenge.jira-issue-status-lozenge-inprogress { background-color: #ffd351 !important; border-color: #ffd351 !important; color: #594300 !important; } .aui-lozenge.jira-issue-status-lozenge-blue-gray, .aui-lozenge.jira-issue-status-lozenge-new { background-color: #4a6785 !important; border-color: #4a6785 !important; color: #fff !important; } .aui-lozenge.jira-issue-status-lozenge-green, .aui-lozenge.jira-issue-status-lozenge-done { background-color: #14892c !important; border-color: #14892c !important; color: #fff !important; } </style>
Et voilà!!!