This repository has been archived by the owner on Mar 22, 2019. It is now read-only.
Open
Description
Goal:
Design an accessible, aesthetically pleasing color palette for the website.
Acceptance Criteria:
- Ember orange (E04E39) as the primary color
- White (#fdfdfd) & Black (#212121)
- Must pass color contrast tests (use https://webaim.org/resources/contrastchecker/ or similar)
- no arbitrarily named colors should be used
- naming convention must be consistent. For example:
$orange: #e04e39;
$orange-darker: darken($orange, 10);
$orange-darkest: darken($orange, 20);
$orange-lighter: lighten($orange, 10);
$orange-lightest: lighten($orange, 40);
To submit a palette for consideration:
- submit a PR that adds a _colors.scss file to
the source/stylesheets/base/ folderhttps://github.com/ember-learn/ember-styleguide so we can test how these could work.