Last active
May 20, 2025 01:30
-
-
Save murphytrueman/8c301c83182d6e9240e9fd85d39917d2 to your computer and use it in GitHub Desktop.
Beginner tokens structure
This file contains hidden or 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
| { | |
| "color": { | |
| "background": { | |
| "canvas": { | |
| "value": "#FFFFFF", | |
| "type": "color", | |
| "description": "Default page background" | |
| }, | |
| "surface": { | |
| "value": "#F5F6F8", | |
| "type": "color", | |
| "description": "Container background" | |
| } | |
| }, | |
| "text": { | |
| "default": { | |
| "value": "#000000", | |
| "type": "color", | |
| "description": "Primary text color" | |
| }, | |
| "inverse": { | |
| "value": "#FFFFFF", | |
| "type": "color", | |
| "description": "Text on dark backgrounds" | |
| } | |
| }, | |
| "brand": { | |
| "primary": { | |
| "value": "#0055FF", | |
| "type": "color", | |
| "description": "Brand blue used for buttons and links" | |
| } | |
| } | |
| }, | |
| "typography": { | |
| "fontFamily": { | |
| "base": { | |
| "value": "Inter, sans-serif", | |
| "type": "fontFamily" | |
| }, | |
| "display": { | |
| "value": "Montserrat, sans-serif", | |
| "type": "fontFamily" | |
| } | |
| }, | |
| "fontSize": { | |
| "sm": { "value": "14px", "type": "fontSize" }, | |
| "md": { "value": "16px", "type": "fontSize" }, | |
| "lg": { "value": "20px", "type": "fontSize" } | |
| }, | |
| "fontWeight": { | |
| "regular": { "value": "400", "type": "fontWeight" }, | |
| "bold": { "value": "700", "type": "fontWeight" } | |
| } | |
| }, | |
| "spacing": { | |
| "xs": { "value": "4px", "type": "spacing" }, | |
| "sm": { "value": "8px", "type": "spacing" }, | |
| "md": { "value": "16px", "type": "spacing" }, | |
| "lg": { "value": "32px", "type": "spacing" } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment