Skip to content

Commit

Permalink
fix(form): add missing accent colors for core
Browse files Browse the repository at this point in the history
Mimicing frontera accent colors, because CMS button design¹ show those:
https://xd.adobe.com/view/b37b291a-7798-4814-90f3-7ac63c48a3e0-e628/screen/d7a72466-4ae8-43fd-9531-44e033245ddb/

Using "Color Button" style² cuz it has more contrast than CMS¹ designs.³

¹ The left two columns ("On Light", "On Dark") are for CMS.
² I.e. .c-button--primary
³ Designer says his CMS designs lack contrast, and he will redesign.
  • Loading branch information
wesleyboar committed Jun 22, 2022
1 parent 4569631 commit c7ad1c1
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions taccsite_cms/static/site_cms/css/src/_imports/settings/color.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
@import url("@tacc/core-styles/source/_imports/settings/color.css");

:root {
/* Accent Hues */
--global-color-accent--x-light: #F2DFBD; /* originally #e3d7fd */
--global-color-accent--light: #BDA374; /* originally #a387ed */
--global-color-accent--normal: #877453; /* originally #784fe8 */
--global-color-accent--dark: #64563E; /* originally #6039cc */
--global-color-accent--x-dark: #403014; /* originally #3d189b */

--global-color-accent--alt: #E0D8C9; /* originally #d2cce7 */
--global-color-accent--weak: #9D702140; /* originally #6039cc40 */
}

0 comments on commit c7ad1c1

Please sign in to comment.