Skip to content

Commit

Permalink
Issue #23 - add first version of theme.json
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbingwide committed May 8, 2021
1 parent 952ad69 commit a41f683
Showing 1 changed file with 145 additions and 0 deletions.
145 changes: 145 additions & 0 deletions theme.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
{
"version": 1,

"settings": {
"border": {
"customColor": true,
"customRadius": true,
"customStyle": true,
"customWidth": true
},
"color": {
"custom": true,
"gradients": [ ],
"link": true,
"palette": [
{
"slug": "foreground",
"name": "Foreground",
"color": "#1a1a2a"
},
{
"slug": "background",
"name": "Background",
"color": "#ffffff"
},
{
"slug": "link",
"name": "Link",
"color": "#3498db"
},
{ "slug": "current-menu",
"name": "Current menu",
"color": "#00a0d2"
},
{
"slug": "site-header-background",
"name": "Blue",
"color": "#0073aa"
},
{
"name": "Bold blue",
"slug": "bold-blue",
"color": "#0072a9"
},

{
"name": "Pale cyan blue",
"slug": "pale-cyan-blue",
"color": "#8ed1fc"
},
{
"name": "Vivid cyan blue",
"slug": "vivid-cyan-blue",
"color": "#0693e3"
},

{
"name": "Very light gray",
"slug": "very-light-gray",
"color": "#eeeeee"
},
{
"name": "Cyan bluish gray",
"slug": "cyan-bluish-gray",
"color": "#abb8c3"
},
{
"name": "Darker gray",
"slug": "darker-gray",
"color": "#616161"
},
{
"name": "White",
"slug": "white",
"color": "#ffffff"
}]
},
"typography": {
"customLineHeight": true,
"customFontWeight": true,
"customFontSize": true,
"fontFamilies": [
{
"fontFamily": "Open Sans, sans-serif",
"slug": "opensans"
},
{
"fontFamily": "Helvetica Neue, Helvetica, Arial, sans-serif",
"slug": "helvetica-arial"
}
]
},
"fontSizes": [
{
"name": "Tiny",
"size": "12px",
"slug": "tiny"
},
{
"name": "Small",
"size": "16px",
"slug": "small"
},
{
"name": "Normal",
"size": "18px",
"slug": "normal"
},
{
"name": "Medium",
"size": "20px",
"slug": "medium"
},
{
"name": "Large",
"size": "24px",
"slug": "large"
},
{
"name": "Larger",
"size": "30px",
"slug": "larger"
},
{
"name": "Largest",
"size": "36px",
"slug": "largest"
}
],
"layout": {
"contentSize": "800px",
"wideSize": "1200px"
}
},
"templateParts": [
{
"name": "header",
"area": "header"
},
{
"name": "footer",
"area": "footer"
}
]
}

0 comments on commit a41f683

Please sign in to comment.