Documentation for GreenHopper 6.2.x. Documentation for other versions of JIRA Agile is available too.
GreenHopper is now called JIRA Agile. Learn more.

Card colours allow you to quickly identify cards on your board as being of a particular issue type, priority, assignee, or — thanks to the power of JQL — practically anything you choose.

You can choose to set up your card colours in any of the following ways:

カードの色の割り当て方法説明
課題タイプ

One colour per issue type. A default colour will be allocated to every issue type which matches issues on the board. 

Default issue types and colours: Improvement, Task, New Feature, Bug.

優先度優先度ごとに 1 つの色を割り当てる既定の色は、 JIRA で優先度に使用されているものと同じです。
担当者担当者ごとに 1 つの色を割り当てる既定の色が、このボード上にある課題を担当したことのある全てのユーザーに割り当てられます。 
クエリ

One colour per JQL query. You can specify whatever queries you wish. Issues which do not match any of your JQL queries will be shown in grey.

You can change the colours if you wish. You can also delete colours (for example, if someone leaves your team, you may want to delete the colour allocated to them).

(info) Note that only the owner of a board (or a person with the 'JIRA Administrators' global permission) can configure a board's card colours.

 

Choosing a different method of card colouring

  1. Select Agile > Manage Boards from the top navigation bar, then click the Configure link corresponding to the board of interest.
  2. Click the Card Colours tab.
  3. In the 'Base card colours on' drop-down, select which method you want to use — either Issue Types, Priorities, Assignees or Queries, as described above.

  4. For each Issue Type (or Priority, or Assignee, or Query), click the current colour to display a colour palette where you can select a new colour or RGB value.

Note that if you change to a different method of card colouring, your original settings will be retained so you can switch back to them later if you wish.

Screenshot 1: the 'Configuration' screen — 'Card Colours' tab.

 

Changing a card colour

  1. Select Agile > Manage Boards from the top navigation bar, then click the Configure link corresponding to the board of interest.
  2. Click the Card Colours tab.

  3. For each Issue Type (or Priority, or Assignee, or Query), click the current colour to display a colour palette where you can select a new colour or RGB value.

 

Deleting a card colour

  1. Select Agile > Manage Boards from the top navigation bar, then click the Configure link corresponding to the board of interest.
  2. Click the Card Colours tab.

  3. Click the Delete button for the colour that you wish to delete.
    (warning) For Query-based colours, deleting a colour will also delete the Query.

Note that deleting a colour for an Issue Type (or Priority, or Assignee) will not delete that Issue Type (or Priority, or Assignee) from your JIRA system.

If you delete a colour for an Issue Type (or Priority, or Assignee) which still matches issues on your board, then that Issue Type (or Priority, or Assignee) will be automatically reinstated on the Card Colours configuration tab when you refresh the screen, and a default colour will be applied.

Moving a card colour

  1. Select Agile > Manage Boards from the top navigation bar, then click the Configure link corresponding to the board of interest.
  2. Click the Card Colours tab.

  3. Hover over the vertical 'grid'  icon, then drag and drop the colour up or down to its new position.

(warning) For Query-based colours, the order is important as each issue will be coloured according to the first query that it matches (e.g. if your first row first row has query "type = bug" and is coloured red, and your second row has query "assignee = dave" and is coloured green, then bugs assigned to dave will appear red).

Adding a Query-based card colour

  1. Select Agile > Manage Boards from the top navigation bar, then click the Configure link corresponding to the board of interest.
  2. Click the Card Colours tab.

  3. In the blue area, choose the colour, type the JQL (see examples below), then click the Add button.
    (info) For syntax, see the JIRA JQL documentation.

  4. If more than one query matches a card, the first query that matches will be the color that is used. 

Changing a Query

  1. Select Agile > Manage Boards from the top navigation bar, then click the Configure link corresponding to the board of interest.
  2. Click the Card Colours tab.

  3. Click in the JQL area, modify the existing JQL and click the Update button.
    (info) For syntax, see the JIRA JQL documentation.

 

Some example JQL you might wish to use for your card colours:

  • 特定のコンポーネントに所属する課題すべてを表示します。(例:'User Interface'):

    project = "Angry Nerds" AND component = "User Interface"
  • 24 時間以内に期限が来る課題すべてを表示します。

    due <= "24h"
  • 特定のユーザーが作成した課題すべてを表示します。例えば:

    reporter = "Jane"

    および

    reporter = "Bob"

(info) For more details, see the JQL documentation.