-
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.
feat(designtokens): separate design tokens in smaller files and fix t…
…ailwinds formatter
- Loading branch information
1 parent
bb86978
commit 00df2a2
Showing
24 changed files
with
1,243 additions
and
1,023 deletions.
There are no files selected for viewing
File renamed without changes.
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
34 changes: 34 additions & 0 deletions
34
packages/components/src/common/styles-dictionary/design-tokens/borders.json
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,34 @@ | ||
{ | ||
"sds": { | ||
"borders": { | ||
"error": { | ||
"400": { "value": "1px solid {sds.color.primitive.red.100.value}" } | ||
}, | ||
"gray": { | ||
"100": { "value": "1px solid {sds.color.primitive.gray.100.value}" }, | ||
"200": { "value": "1px solid {sds.color.primitive.gray.200.value}" }, | ||
"300": { "value": "1px solid {sds.color.primitive.gray.300.value}" }, | ||
"400": { "value": "1px solid {sds.color.primitive.gray.400.value}" }, | ||
"500": { "value": "1px solid {sds.color.primitive.gray.500.value}" }, | ||
"dashed": { "value": "2px dashed {sds.color.primitive.gray.400.value}" } | ||
}, | ||
"link": { | ||
"dashed": { "value": "1px dashed" }, | ||
"solid": { "value": "1px solid" } | ||
}, | ||
"primary": { | ||
"300": { "value": "1px solid {sds.color.primitive.blue.300.value}" }, | ||
"400": { "value": "1px solid {sds.color.primitive.blue.400.value}" }, | ||
"500": { "value": "1px solid {sds.color.primitive.blue.500.value}" }, | ||
"600": { "value": "1px solid {sds.color.primitive.blue.600.value}" }, | ||
"dashed": { "value": "2px dashed {sds.color.primitive.blue.400.value}" } | ||
}, | ||
"success": { | ||
"400": { "value": "1px solid {sds.color.primitive.green.100.value}" } | ||
}, | ||
"warning": { | ||
"400": { "value": "1px solid {sds.color.primitive.yellow.100.value}" } | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.