-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge release/2.3.0 into main branch (#1081)
* Use modal backdrop z index on drawer backdrop (#1063) * use Inter font (#1062) * FormGroup - update helper text, focus states (#1066) * remove window from Avatar classname (#1068) * add border to Card under Synthesized class (#1071) * Add Synthesis colors from Figma (#1069) * add pointer to CheckboxButton and RadioButton (#1074) * update Button to use Synthesis colors (#1076) * Implements Synthesis styles for tabs component (#1077) * Implements Synthesis styles for Select component (#1079) * Synthesize Alert / Toast colors (#1080)
- Loading branch information
1 parent
487a9dc
commit 4d42392
Showing
59 changed files
with
1,117 additions
and
614 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// stoplight color system | ||
$synth-success-green-dark: #015029; | ||
$synth-success-green-medium: #09914f; | ||
$synth-success-green-light: #d4f6e5; | ||
|
||
$synth-error-red-dark: #c71f1f; | ||
$synth-error-red-medium: #e03131; | ||
$synth-error-red-light: #fae1e1; | ||
|
||
$synth-warning-amber-dark: #fbda36; | ||
$synth-warning-amber-medium: #ffe356; | ||
$synth-warning-amber-light: #fff1ab; | ||
$synth-warning-amber-alternate: #f59c27; | ||
|
||
// neutrals | ||
$synth-alert-bg-neutral: #f4f4f4; | ||
$synth-div-stroke-neutral: #dedede; | ||
$synth-header-neutral: #fbfbfb; | ||
$synth-page-neutral: #fdfdfd; | ||
$synth-text-neutral: #1b1b1b; | ||
$synth-unselected-neutral: #5b5b5b; | ||
|
||
// main schema - visual hierarchy | ||
$synth-accent-green: #158d71; | ||
$synth-dark-background-selected-blue: #162c4e; | ||
$synth-dark-background-pressed-blue: #010812; | ||
$synth-hover-state: #eef9f6; | ||
$synth-indicator-stroke-green: #91cabb; | ||
$synth-navbar-blue: #010812; | ||
$synth-primary-cta-blue: #162c4e; | ||
$synth-selected-state-green: #c6e2db; | ||
|
||
// feedback and signifier colors | ||
$synth-hyperlink-color: #3f6dca; | ||
|
||
$synth-hover-blue: #e5ecff; | ||
$synth-header-gray-blue: #eef2f8; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap'); | ||
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap'); | ||
@import './theme'; | ||
@import './baseline'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
$input-box-shadow: inset 0px 2px 2px rgba(225, 228, 232, 0.65); | ||
$input-focus-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.075); | ||
$input-focus-box-shadow: none; |
Oops, something went wrong.