-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jason Baker
authored and
Jason Baker
committed
Nov 20, 2024
1 parent
301fbef
commit 8f5784f
Showing
5 changed files
with
157 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"color": { | ||
"background": { | ||
"lightest": { | ||
"value": "#F1F3F3", | ||
"public": true, | ||
"usage": "Used for creating light backgrounds", | ||
"wcag": "n/a", | ||
"deprecated": true, | ||
"version": "4.5.0", | ||
"reference": "n/a" | ||
} | ||
} | ||
} | ||
} |
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,18 @@ | ||
{ | ||
"color": { | ||
"border": { | ||
"ui": { | ||
"active": { | ||
"default": { | ||
"value": "#CE0C88", | ||
"public": true, | ||
"default": true, | ||
"usage": "Active UI border color on light backgrounds", | ||
"wcag": "n/a", | ||
"deprecated": false | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
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,56 @@ | ||
{ | ||
"color": { | ||
"container": { | ||
"primary": { | ||
"default": { | ||
"value": "#ffffff", | ||
"public": true, | ||
"default": true, | ||
"usage": "Primary color for containers on light backgrounds", | ||
"wcag": "n/a", | ||
"deprecated": false | ||
} | ||
}, | ||
"ui": { | ||
"primary": { | ||
"default": { | ||
"default": { | ||
"value": "#CE0C88", | ||
"public": true, | ||
"default": true, | ||
"usage": "Primary active color for containers on light backgrounds", | ||
"wcag": "n/a", | ||
"deprecated": false | ||
}, | ||
"inverse": { | ||
"value": "#F358B0", | ||
"public": true, | ||
"inverse": true, | ||
"usage": "Primary active color for containers on dark backgrounds", | ||
"wcag": "n/a", | ||
"deprecated": false | ||
} | ||
}, | ||
"active": { | ||
"default": { | ||
"value": "#CE0C88", | ||
"public": true, | ||
"default": true, | ||
"usage": "Primary active color for containers on light backgrounds", | ||
"wcag": "n/a", | ||
"deprecated": false | ||
}, | ||
"inverse": { | ||
"value": "#F358B0", | ||
"public": true, | ||
"inverse": true, | ||
"usage": "Primary active color for containers on dark backgrounds", | ||
"wcag": "n/a", | ||
"deprecated": false | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
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,24 @@ | ||
{ | ||
"color": { | ||
"icon": { | ||
"primary": { | ||
"default": { | ||
"value": "#463C8F", | ||
"public": true, | ||
"default": true, | ||
"usage": "Primary color for icons on light backgrounds", | ||
"wcag": "n/a", | ||
"deprecated": false | ||
}, | ||
"inverse": { | ||
"value": "#9B9DCA", | ||
"public": true, | ||
"inverse": true, | ||
"usage": "Primary color for icons on dark backgrounds", | ||
"wcag": "n/a", | ||
"deprecated": false | ||
} | ||
} | ||
} | ||
} | ||
} |
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,44 @@ | ||
{ | ||
"color": { | ||
"text": { | ||
"primary": { | ||
"default": { | ||
"value": "#000000", | ||
"public": true, | ||
"default": true, | ||
"usage": "Primary color for body and header text light mode and light backgrounds", | ||
"wcag": "n/a", | ||
"deprecated": false | ||
}, | ||
"inverse": { | ||
"value": "rgba(255, 255, 255, 0.87)", | ||
"public": true, | ||
"inverse": true, | ||
"usage": "Primary color for body and header text for dark mode and dark backgrounds", | ||
"wcag": "AAA", | ||
"deprecated": false | ||
} | ||
}, | ||
"ui": { | ||
"default": { | ||
"default": { | ||
"value": "#CE0C88", | ||
"public": true, | ||
"default": true, | ||
"usage": "Default UI text color on light backgrounds", | ||
"wcag": "n/a", | ||
"deprecated": false | ||
}, | ||
"inverse": { | ||
"value": "#F358B0", | ||
"public": true, | ||
"inverse": true, | ||
"usage": "Default UI text color on dark backgrounds", | ||
"wcag": "n/a", | ||
"deprecated": false | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |