Skip to content

Commit

Permalink
Add red, green, blue, and gray to the color table
Browse files Browse the repository at this point in the history
  • Loading branch information
annehaley committed Sep 14, 2023
1 parent a649a88 commit 476288d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion girder/girder_large_image/web_client/vue/utils/colors.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ export const CHANNEL_COLORS = {
'^CY3(|[^\d].*)$': '#FF8000', // eslint-disable-line
'^CY5(|[^\d].*)$': '#FF00FF', // eslint-disable-line
'^YFP.*$': '#00FF00',
'^GFP.*$': '#00FF00'
'^GFP.*$': '#00FF00',
'^red$': '#FF0000',
'^green$': '#00FF00',
'^blue$': '#0000FF',
'^gr[ae]y(|scale)$': '#FFFFFF',
};

export const OTHER_COLORS = [
Expand Down

0 comments on commit 476288d

Please sign in to comment.