Last active
June 14, 2022 18:04
-
-
Save skorasaurus/fddcd4abfd91f8ef4f7cec9217ccef0c to your computer and use it in GitHub Desktop.
theme.json example ; for version 2.
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
{ | |
"$schema": "https://schemas.wp.org/trunk/theme.json", | |
"version": 2, | |
"settings": { | |
"color": { | |
"custom": false, | |
"customGradient": false, | |
"gradients": [], | |
"link": false, | |
"defaultPalette": false, | |
"defaultGradients": false, | |
"palette": [ | |
{ | |
"name": "primary blue", | |
"slug": "primary-blue", | |
"color": "#0057B7" | |
}, | |
{ | |
"name": "primary gold", | |
"slug": "primary-gold", | |
"color": "#E9E186" | |
}, | |
{ | |
"name": "white", | |
"slug": "white", | |
"color": "#FFFFFF" | |
}, | |
{ | |
"name": "black", | |
"slug": "black", | |
"color": "#000000" | |
} | |
] | |
}, | |
"spacing": { | |
"padding": true, | |
"units": ["px", "em", "rem", "vh", "vw"] | |
}, | |
"typography": { | |
"fontWeight": false | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment