Festival WordPress Website

Step 1

Download Content

Then Unzip file and, Go to your WordPress admin > Tools > Import > WordPress > Install/Run Importer > Upload XML File

Step 2

Copy Config

{
	"mode": "development",
	"config": "var tailwindPlugin = window.tailwind.plugin;\n\nvar addVariants = tailwindPlugin( ( { addVariant, e } ) => {\n\taddVariant('logged-in', '.logged-in &' );\n\taddVariant('children', '& > *');\n\taddVariant('children-first', '& > *:first-child');\n\taddVariant('children-last', '& > *:last-child');\n} );\n\nfunction withOpacityValue(variable) {\n\treturn ({ opacityValue }) => {\n\t\tif (opacityValue === undefined) {\n\t\t\treturn 'rgb(' + variable + ')';\n\t\t}\n\t\treturn 'rgb(' + variable + ' / ' + opacityValue + ')';\n\t}\n}\n\ntailwind.config={\n\timportant: true,\n\ttheme: {\n\t\t/* max-width responsive breakpoints */\n\t\tscreens: {\n\t\t\tmd: { 'max': '1023px' },\n\t\t\tsm: { 'max': '767px' },\n\t\t},\n\t\tcolors: {\n\t\t\tprimary: withOpacityValue('0 0 0'),\n\t\t\tsecondary: withOpacityValue('255 255 255'),\n\t\t\ttext: withOpacityValue('0 0 0'),\n\t\t\taccent: withOpacityValue('0 0 0'),\n\t\t\tbackground: withOpacityValue('241 160 77'),\n\t\t\ttertiary: withOpacityValue('51 35 44'),\n\t\t\ttransparent: 'transparent',\n\t\t\tcurrent: 'current',\n\t\t},\n\t\textend: {\n\t\t\tfontFamily: {\n\t\t\t\tprimary: 'var(--tw-font-primary)',\n\t\t\t\tsecondary: 'var(--tw-font-secondary)',\n\t\t\t\ttext: 'var(--tw-font-text)',\n\t\t\t\taccent: 'var(--tw-font-accent)',\n\t\t\t},\n\t\t\tlistStyleType: {\n\t\t\t\tcircle: 'circle',\n\t\t\t\tsquare: 'square',\n\t\t\t},\n\t\t},\n\t},\n\tcorePlugins: {\n\t\tpreflight: false,\n\t},\n\tplugins: [\n\t\taddVariants,\n\t]\n}",
	"css": "/* THEME VARIABLES */\n\n/* layout */\n:root {\n\t--tw-content-size: 45rem;\n\t--tw-wide-size: 80rem;\n\t--tw-gutter: 2rem;\n}\n\n@media screen(md) {\n\t:root {\n\t\t--tw-gutter: 2rem;\n\t}\n}\n\n@media screen(sm) {\n\t:root {\n\t\t--tw-gutter: 1.5rem;\n\t}\n}\n\n/* custom utilities */\n@layer utilities {\n  .top-admin-bar-height {\n    top: var(--wp-admin--admin-bar--height);\n  }\n}\n\n/* HTML ELEMENTS */\n\n/* body */\n.editor-styles-wrapper,\nbody:not(.wp-admin) {\n\t@apply antialiased font-text bg-background text-text font-black text-lg;\n}\n\n@layer base {\n\n\t/* links */\n\t.editor-styles-wrapper a:not(.wp-block-button__link):not(.wp-block-navigation-item__content):not(.wp-block-social-link-anchor),\n\t.wp-site-blocks a:not(.wp-block-button__link):not(.wp-block-navigation-item__content):not(.wp-block-social-link-anchor) {\n\t\t@apply text-text no-underline;\n\t}\n\t.editor-styles-wrapper a:not(.wp-block-button__link):not(.wp-block-navigation-item__content):not(.wp-block-social-link-anchor):hover,\n\t.wp-site-blocks a:not(.wp-block-button__link):not(.wp-block-navigation-item__content):not(.wp-block-social-link-anchor):hover {\n\t\t@apply text-text underline;\n\t}\n\n\t/* buttons */\n\tbutton:not(.components-button),\n\t.wp-site-blocks:not(.is-root-container) button {\n\n\t}\n\n\t/* CORE BLOCKS */\n\n\t/* headings */\n\th1.wp-block-heading:not(.editor-post-title),\n\t.wp-site-blocks h1:not(.editor-post-title),\n\th2.wp-block-heading,\n\t.wp-site-blocks h2,\n\th3.wp-block-heading,\n\t.wp-site-blocks h3,\n\th4.wp-block-heading,\n\t.wp-site-blocks h4,\n\th5.wp-block-heading,\n\t.wp-site-blocks h5,\n\th6.wp-block-heading,\n\t.wp-site-blocks h6,\n\th1.wp-block-post-title,\n\th2.wp-block-post-title,\n\th3.wp-block-post-title,\n\th4.wp-block-post-title,\n\th5.wp-block-post-title,\n\th6.wp-block-post-title {\n\t\t@apply font-primary text-primary font-black;\n\t}\n\n\t/* h1 */\n\th1:not(.editor-post-title).wp-block-heading,\n\t.wp-site-blocks h1:not(.editor-post-title) {\n\t\t@apply text-8xl md:text-7xl;\n\t}\n\n\t/* h2 */\n\th2.wp-block-heading,\n\t.wp-site-blocks h2 {\n\t\t@apply text-8xl md:text-6xl;\n\t}\n\n\t/* h3 */\n\th3.wp-block-heading,\n\t.wp-site-blocks h3 {\n\t\t@apply text-5xl md:text-4xl;\n\t}\n\n\t/* h4 */\n\th4.wp-block-heading,\n\t.wp-site-blocks h4 {\n\t\t@apply text-3xl md:text-2xl;\n\t}\n\n\t/* h5 */\n\th5.wp-block-heading,\n\t.wp-site-blocks h5 {\n\t\t@apply text-2xl;\n\t}\n\n\t/* h6 */\n\th6.wp-block-heading,\n\t.wp-site-blocks h6 {\n\t\t@apply text-xl;\n\t}\n\n\t/* paragraph block */\n\tp.wp-block-paragraph,\n\t.wp-site-blocks p {\n\t\t@apply font-normal;\n\t}\n\n\t/* image block */\n\t.wp-block-image {\n\n\t}\n\n\t/* gallery block */\n\t.wp-block-gallery {\n\n\t}\n\n\t/* list block */\n\t.wp-block-list {\n\n\t}\n\n\t/* quote block */\n\t.wp-block-quote {\n\n\t}\n\n\t/* archives block */\n\t.wp-block-archives {\n\n\t}\n\n\t/* audio block */\n\t.wp-block-audio {\n\n\t}\n\n\t/* button block */\n\t.wp-block-button {\n\t\t@apply rounded-none children:px-6 children:py-4 border-primary border-2 hover:bg-primary hover:text-background font-accent;\n\t}\n\t.wp-block-button__link {\n\t\t@apply bg-transparent;\n\t}\n\n\t/* buttons block */\n\t.wp-block-buttons {\n\n\t}\n\n\t/* calendar block */\n\t.wp-block-calendar {\n\n\t}\n\n\t/* categories block */\n\t.wp-block-categories {\n\n\t}\n\n\t/* freeform block */\n\t.wp-block-freeform {\n\n\t}\n\n\t/* code block */\n\t.wp-block-code {\n\n\t}\n\n\t/* column block */\n\t.wp-block-column {\n\n\t}\n\t.wp-block-column > :first-child {\n\t\t/* @apply mt-0; */\n\t}\n\t.wp-block-column > :last-child {\n\t\t/* @apply mb-0; */\n\t}\n\n\t/* columns block */\n\t.wp-block-columns {\n\n\t}\n\n\t/* cover block */\n\t.wp-block-cover {\n\n\t}\n\n\t/* embed block */\n\t.wp-block-embed {\n\n\t}\n\n\t/* file block */\n\t.wp-block-file {\n\n\t}\n\n\t/* group block */\n\t.wp-block-group {\n\n\t}\n\n\t/* html block */\n\t.wp-block-html {\n\n\t}\n\n\t/* latest comments block */\n\t.wp-block-latest-comments {\n\n\t}\n\n\t/* latest posts block */\n\t.wp-block-latest-posts {\n\n\t}\n\n\t/* media text block */\n\t.wp-block-media-text {\n\n\t}\n\n\t/* missing block */\n\t.wp-block-missing {\n\n\t}\n\n\t/* more block */\n\t.wp-block-more {\n\n\t}\n\n\t/* nextpage block */\n\t.wp-block-nextpage {\n\n\t}\n\n\t/* page list block */\n\t.wp-block-page-list {\n\n\t}\n\n\t/* pattern block */\n\t.wp-block-pattern {\n\n\t}\n\n\t/* preformatted block */\n\t.wp-block-preformatted {\n\n\t}\n\n\t/* pullquote block */\n\t.wp-block-pullquote {\n\n\t}\n\n\t/* block block */\n\t.wp-block {\n\n\t}\n\n\t/* rss block */\n\t.wp-block-rss {\n\n\t}\n\n\t/* search block */\n\t.wp-block-search {\n\n\t}\n\n\t/* separator block */\n\t.wp-block-separator {\n\n\t}\n\n\t/* shortcode block */\n\t.wp-block-shortcode {\n\n\t}\n\n\t/* social link block */\n\t.wp-block-social-link {\n\n\t}\n\n\t/* social links block */\n\t.wp-block-social-links {\n\n\t}\n\n\t/* spacer block */\n\t.wp-block-spacer {\n\n\t}\n\n\t/* table block */\n\t.wp-block-table {\n\n\t}\n\n\t/* tag cloud block */\n\t.wp-block-tag-cloud {\n\n\t}\n\n\t/* text columns block */\n\t.wp-block-text-columns {\n\n\t}\n\n\t/* verse block */\n\t.wp-block-verse {\n\n\t}\n\n\t/* video block */\n\t.wp-block-video {\n\n\t}\n\n\t/* navigation block */\n\t.wp-block-navigation {\n\n\t}\n\n\t/* navigation link block */\n\t.wp-block-navigation-link a {\n\n\t}\n\n\t/* navigation block item label */\n\t.wp-block-navigation-item__label {\n\t\t@apply whitespace-nowrap;\n\t}\n\n\t/* navigation submenu block */\n\t.wp-block-navigation-submenu {\n\n\t}\n\n\t/* site logo block */\n\t.wp-site-logo {\n\n\t}\n\n\t/* site title block */\n\t.wp-site-title {\n\n\t}\n\n\t/* site tagline block */\n\t.wp-site-tagline {\n\n\t}\n\n\t/* query block */\n\t.wp-block-query {\n\n\t}\n\n\t/* template part block */\n\t.wp-block-template-part {\n\n\t}\n\n\t/* post title block */\n\t.wp-block-post-title {\n\n\t}\n\n\t/* post excerpt block */\n\t.wp-block-post-excerpt {\n\n\t}\n\n\t/* post featured-image block */\n\t.wp-block-post-featured-image {\n\n\t}\n\n\t/* post content block */\n\t.wp-block-post-content {\n\n\t}\n\n\t/* post author block */\n\t.wp-block-post-author {\n\n\t}\n\n\t/* post date block */\n\t.wp-block-post-date {\n\n\t}\n\n\t/* post terms block */\n\t.wp-block-post-terms {\n\n\t}\n\n\t/* post navigation-link block */\n\t.wp-block-post-navigation-link {\n\n\t}\n\n\t/* post template block */\n\t.wp-block-post-template {\n\n\t}\n\n\t/* query pagination block */\n\t.wp-block-query-pagination {\n\n\t}\n\n\t/* query pagination-next block */\n\t.wp-block-query-pagination-next {\n\n\t}\n\n\t/* query pagination-numbers block */\n\t.wp-block-query-pagination-numbers {\n\n\t}\n\n\t/* query pagination-previous block */\n\t.wp-block-query-pagination-previous {\n\n\t}\n\n\t/* post comments block */\n\t.wp-block-post-comments {\n\n\t}\n\n\t/* loginout block */\n\t.wp-block-loginout {\n\n\t}\n\n\t/* term description block */\n\t.wp-block-term-description {\n\n\t}\n\n\t/* query title block */\n\t.wp-block-query-title {\n\n\t}\n\n\t/* post author-name block */\n\t.wp-block-post-author-name {\n\n\t}\n\n\t/* post author-biography block */\n\t.wp-block-post-author-biography {\n\n\t}\n\n\t/* home link block */\n\t.wp-block-home-link {\n\n\t}\n\n\t/* comment author-avatar block */\n\t.wp-block-comment-author-avatar {\n\n\t}\n\n\t/* comment author-name block */\n\t.wp-block-comment-author-name {\n\n\t}\n\n\t/* comment content block */\n\t.wp-block-comment-content {\n\n\t}\n\n\t/* comment date block */\n\t.wp-block-comment-date {\n\n\t}\n\n\t/* comment edit-link block */\n\t.wp-block-comment-edit-link {\n\n\t}\n\n\t/* comment reply-link block */\n\t.wp-block-comment-reply-link {\n\n\t}\n\n\t/* comment template block */\n\t.wp-block-comment-template {\n\n\t}\n\n\t/* comments query-loop block */\n\t.wp-block-comments-query-loop {\n\n\t}\n\n\t/* comments pagination block */\n\t.wp-block-comments-pagination {\n\n\t}\n\n\t/* comments pagination-next block */\n\t.wp-block-comments-pagination-next {\n\n\t}\n\n\t/* comments pagination-numbers block */\n\t.wp-block-comments-pagination-numbers {\n\n\t}\n\n\t/* comments pagination-previous block */\n\t.wp-block-comments-pagination-previous {\n\n\t}\n\n\t/* navigation area block */\n\t.wp-block-navigation-area {\n\n\t}\n\n\t/* post comment block */\n\t.wp-block-post-comment {\n\n\t}\n\n\t/* post comments-count block */\n\t.wp-block-post-comments-count {\n\n\t}\n\n\t/* post comments-form block */\n\t.wp-block-post-comments-form {\n\n\t}\n\n\t/* post comments-link block */\n\t.wp-block-post-comments-link {\n\n\t}\n\n\t/* read more block */\n\t.wp-block-read-more {\n\n\t}\n}\n\t",
	"fonts": {"primary":{"value":"Roboto","label":"Roboto","variants":["100","300","400","500","700","900"]},"text":{"value":"Roboto","label":"Roboto","variants":["100","300","400","500","700","900"]}}
}

Then, Go to block editor on any page or post > Options (3 dots top right) > Draft Plugin Settings > Import/Export > Paste Config Code > Press Save