luckyshot / agilescrumfortrello

'Agile SCRUM for Trello boards' is a Google Chrome extension that gives super-powers to your Trello boards by enabling SCRUM features (Story Points, Tags, Progress Bars, Time Spent and more)
http://xaviesteve.com/5109/agile-scrum-trello-boards/
GNU General Public License v2.0
77 stars 29 forks source link

Project's tag have very similar colors #19

Open kjgarza opened 8 years ago

kjgarza commented 8 years ago

IT doesn't matter if the tag starts with a "D", "E" or "A" they all are shades of GREEN

I think _StringtoColor is not giving you a good color pallette

oneezy commented 8 years ago

I agree. The [Project] background colors should be the same as Trello's default color choices,

image

/* Scrum Card Project (Default) */
.scrum-card-project {
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 10px;
    line-height: 1;
    vertical-align: 2px;
    padding: 2px 3px;
    border-radius: 3px;
}

/* Scrum Card Project (Colors) */
.scrum-card-project-white        { background: #ffffff; }
.scrum-card-project-blue         { background: #00c2e0; }
.scrum-card-project-darkblue     { background: #0079bf; }
.scrum-card-project-yellow       { background: #e6c60d; }
.scrum-card-project-orange       { background: #ffab4a; }
.scrum-card-project-red          { background: #eb5a46; }
.scrum-card-project-purple       { background: #c377e0; }
.scrum-card-project-pink         { background: #ff80ce; }
.scrum-card-project-green        { background: #51e898; }
.scrum-card-project-darkgreen    { background: #61bd4f; }
.scrum-card-project-gray         { background: #c4c9cc; }
.scrum-card-project-darkgray     { background: #4d4d4d; }
.scrum-card-project-black        { background: #000000; }
rudwolf commented 4 years ago

@luckyshot You could tell people in the plugin description that due to my addition people can now use this:

[TAGNAME__color] where color can be a html color name or an hexa color.

Add it to the plugin description on the chrome extension page.

chage: Assign a card to a Project by writing it in square braquets: "[dev] Implement Ads in footer"

to: Assign a card to a Project by writing it in square braquets: "[dev] Implement Ads in footer" Add a custom color to the tag if you want using the following format: [tagname__color] where color can be text (blue, red, green) or an HTML HEX color code like #00FF00