forked from charle692/aviary-tokens
-
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.
feat(pencil): add first colours to light set
Add some colours to light theme, add new token transformer command for light set
- Loading branch information
Showing
16 changed files
with
269 additions
and
18 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
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
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,118 @@ | ||
{ | ||
"colors": { | ||
"text": { | ||
"base": { | ||
"value": "{colors.grey.800}", | ||
"type": "color" | ||
}, | ||
"emphasis": { | ||
"value": "{colors.grey.700}", | ||
"type": "color" | ||
}, | ||
"subdued": { | ||
"value": "{colors.grey.500}", | ||
"type": "color" | ||
} | ||
}, | ||
"surface": { | ||
"level0": { | ||
"value": "{colors.grey.200}", | ||
"type": "color" | ||
}, | ||
"level1": { | ||
"value": "{colors.shades.white}", | ||
"type": "color" | ||
}, | ||
"level2": { | ||
"value": "{colors.grey.100}", | ||
"type": "color" | ||
}, | ||
"level3": { | ||
"value": "{colors.shades.white}", | ||
"type": "color" | ||
} | ||
}, | ||
"primary": { | ||
"text": { | ||
"base": { | ||
"value": "{colors.green.600}", | ||
"type": "color" | ||
}, | ||
"hover": { | ||
"value": "{colors.green.700}", | ||
"type": "color" | ||
}, | ||
"active": { | ||
"value": "{colors.green.800}", | ||
"type": "color" | ||
} | ||
}, | ||
"background": { | ||
"base": { | ||
"value": "{colors.green.600}", | ||
"type": "color" | ||
}, | ||
"hover": { | ||
"value": "{colors.green.700}", | ||
"type": "color" | ||
}, | ||
"active": { | ||
"value": "{colors.green.800}", | ||
"type": "color" | ||
}, | ||
"muted": { | ||
"value": "{colors.green.200}", | ||
"type": "color" | ||
}, | ||
"mutedHover": { | ||
"value": "{colors.green.300}", | ||
"type": "color" | ||
}, | ||
"mutedActive": { | ||
"value": "{colors.green.400}", | ||
"type": "color" | ||
}, | ||
"box": { | ||
"value": "{colors.green.100}", | ||
"type": "color" | ||
} | ||
}, | ||
"border": { | ||
"base": { | ||
"value": "{colors.green.600}", | ||
"type": "color" | ||
}, | ||
"hover": { | ||
"value": "{colors.green.700}", | ||
"type": "color" | ||
}, | ||
"active": { | ||
"value": "{colors.green.800}", | ||
"type": "color" | ||
} | ||
} | ||
}, | ||
"disabled": { | ||
"text": { | ||
"value": "{colors.grey.500}", | ||
"type": "color" | ||
}, | ||
"background": { | ||
"value": "{colors.grey.200}", | ||
"type": "color" | ||
}, | ||
"nakedContent": { | ||
"value": "{colors.disabled.background}", | ||
"type": "color" | ||
}, | ||
"nakedBackground": { | ||
"value": "{colors.shades.transparent}", | ||
"type": "color" | ||
}, | ||
"border": { | ||
"value": "{colors.grey.400}", | ||
"type": "color" | ||
} | ||
} | ||
} | ||
} |
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
Oops, something went wrong.