Skip to content

Instantly share code, notes, and snippets.

@asathoor
Created November 19, 2023 13:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save asathoor/6f19e76292f650e2a22062bf6b489692 to your computer and use it in GitHub Desktop.
Save asathoor/6f19e76292f650e2a22062bf6b489692 to your computer and use it in GitHub Desktop.
WordPress Styles (theme.json variant)

WordPress Style for Twenty Twenty Four

Here are some styles:

  • colors
  • fonts
  • settings
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 2,
"title": "PETJ: Visions",
"settings": {
"color": {
"background": false,
"custom": false,
"customDuotone": true,
"customGradient": true,
"defaultDuotone": true,
"defaultGradients": true,
"defaultPalette": false,
"link": true,
"text": true,
"palette": [
{
"color": "#52135b",
"name": "Base",
"slug": "base"
},
{
"color": "#a53b3b",
"name": "Base / Two",
"slug": "base-2"
},
{
"color": "#3ba53b",
"name": "Contrast / 2",
"slug": "contrast-2"
},
{
"color": "#3ba5a5",
"name": "Contrast",
"slug": "contrast"
},
{
"color": "#D5E0F0",
"name": "Contrast / 3",
"slug": "contrast-3"
}
]
},
"typography": {
"fontFamilies": [
{
"fontFace": [
{
"fontFamily": "Cardo",
"fontStyle": "normal",
"fontWeight": "400",
"src": ["file:./assets/fonts/cardo/cardo_normal_400.woff2"]
},
{
"fontFamily": "Cardo",
"fontStyle": "italic",
"fontWeight": "400",
"src": ["file:./assets/fonts/cardo/cardo_italic_400.woff2"]
},
{
"fontFamily": "Cardo",
"fontStyle": "normal",
"fontWeight": "700",
"src": ["file:./assets/fonts/cardo/cardo_normal_700.woff2"]
}
],
"fontFamily": "Cardo",
"name": "Cardo",
"slug": "body"
},
{
"fontFace": [
{
"fontFamily": "GlassAntiqua",
"fontStyle": "normal",
"fontWeight": "400",
"src": ["file:./assets/fonts/Glass_Antiqua/GlassAntiquaRegular.ttf"]
}
],
"fontFamily": "GlassAntiqua",
"name": "GlassAntiqua",
"slug": "glassantiqua"
},
{
"fontFace": [
{
"fontFamily": "Jost",
"fontStyle": "normal",
"fontWeight": "100 900",
"src": ["file:./assets/fonts/jost/Jost-VariableFont_wght.woff2"]
},
{
"fontFamily": "Jost",
"fontStyle": "italic",
"fontWeight": "100 900",
"src": [
"file:./assets/fonts/jost/Jost-Italic-VariableFont_wght.woff2"
]
}
],
"fontFamily": "\"Jost\", sans-serif",
"name": "Jost",
"slug": "heading"
},
{
"fontFamily": "-apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif",
"name": "System Sans-serif",
"slug": "system-sans-serif"
},
{
"fontFamily": "Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol",
"name": "System Serif",
"slug": "system-serif"
}
],
"fontSizes": [
{
"fluid": false,
"name": "Small",
"size": "1rem",
"slug": "small"
},
{
"fluid": false,
"name": "Medium",
"size": "1.2rem",
"slug": "medium"
},
{
"fluid": {
"min": "1.5rem",
"max": "2rem"
},
"name": "Large",
"size": "2rem",
"slug": "large"
},
{
"fluid": {
"min": "2rem",
"max": "2.65rem"
},
"name": "Extra Large",
"size": "2.65rem",
"slug": "x-large"
},
{
"fluid": {
"min": "2.65rem",
"max": "3.5rem"
},
"name": "Extra Extra Large",
"size": "3.5rem",
"slug": "xx-large"
}
]
}
},
"styles": {
"blocks": {
"core/button": {
"variations": {
"outline": {
"spacing": {
"padding": {
"bottom": "calc(0.8rem - 2px)",
"left": "calc(1.6rem - 2px)",
"right": "calc(1.6rem - 2px)",
"top": "calc(0.8rem - 2px)"
}
},
"border": {
"width": "2px"
}
}
}
},
"core/site-title": {
"typography": {
"fontFamily": "var(--wp--preset--font-family--glassantiqua)",
"fontWeight": "normal"
}
},
"core/navigation": {
"typography": {
"fontSize": "var(--wp--preset--font-size--small)",
"fontWeight": "normal"
}
}
},
"elements": {
"button": {
"border": {
"radius": "6px"
},
"color": {
"background": "var(--wp--preset--color--contrast)",
"text": "var(--wp--preset--color--base-2)"
},
"spacing": {
"padding": {
"bottom": "0.98rem",
"left": "1.6rem",
"right": "1.6rem",
"top": "0.8rem"
}
},
"typography": {
"fontFamily": "var(--wp--preset--font-family--heading)",
"fontSize": "var(--wp--preset--font-size--small)",
"fontStyle": "normal"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--contrast)"
}
}
},
"heading": {
"typography": {
"fontFamily": "var(--wp--preset--font-family--glassantiqua)",
"letterSpacing": "0"
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment