-
Notifications
You must be signed in to change notification settings - Fork 677
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What's the reason behind the color palette? #682
Comments
http://tachyons.io/docs/themes/skins/ |
Do you know where they originated from or how they were chosen? |
https://tachyons.io/docs/themes/skins/ There's a note
I must admit, that the colors listed as 'Accessible Combinations' are not all represented by Tachyons, such as the yellow related: |
See also http://clrs.cc/ by murmurs |
not necessary related to tachyons, @in3rsha have a look over material design theme. as a golden rule: the less colors you have, the better :D |
@orionrush @cmnstmntmn Thank you. |
@in3rsha .x.sk#{$namespace} {
&.tx-#{$class}#{$index},
&.txh-#{$class}#{$index}:hover,
&.txf-#{$class}#{$index}:focus {
color: $pick;
}
&.bg-#{$class}#{$index},
&.bgh-#{$class}#{$index}:hover,
&.bgf-#{$class}#{$index}:focus {
background-color: $pick;
}
&.bd-#{$class}#{$index},
&.bdh-#{$class}#{$index}:hover,
&.bdf-#{$class}#{$index}:focus {
border-color: $pick;
}
@if(config.$skinEnableContrast) {
&.txc-#{$class}#{$index},
&.txch-#{$class}#{$index}:hover,
&.txcf-#{$class}#{$index}:focus {
color: text-color($pick);
}
}
} Successfully built(main): https://coolors.co/2f0292-4404cf-7233fa-a485e7-c3b4e4 |
First of all, thank you for Tachyons. It's a pleasure to use, and really removes a mental burden that comes with switching between HTML and CSS when building pages for the web.
But anyway... what's the reason for the colors used in Tachyons?
I'm assuming care was taken in choosing colors that are both good for design and work well together. However, sometimes I'd like to use a slightly different colors in addition to the ones that come with Tachyons, but I'm not sure how to go about extending the palette with colors that might work with the existing ones.
I'm probably over-thinking this, but if there's some sort of system or logic behind the colors selected in Tachyons, I would be very interested to hear about it. I've tried converting all the colors to HSL to look for patterns, but I can't see anything obvious:
Is there a reason behind these color choices? Is there a nice extended palette available?
Thanks in advance.
The text was updated successfully, but these errors were encountered: