Paragraph - User Documentation
DemosSupport
  • 👋Introduction
  • 🆕Changelog
  • 🏁Getting Started
    • 🔽Uploading a Theme
  • 📜Main Templates
    • 📰Post Page
    • 🔍Post with Lightbox
    • 📑Categories (Tags) Page
    • 🧑‍🎨Authors Page
    • ♾️Archive (All Posts) Page
  • ⚙️Custom Settings
    • ™️Logos
    • 🔤Typography
    • 🧭Header Type
    • 🎨Background Colors
    • 🧮Border Radius
    • 🦸Hero Section
    • 🏠Homepage Layout
    • 📢Subscribe CTA Banner
  • 🤝Membership
    • 🎬Setting Up
    • ⬇️Sign In Page
    • 🆙Sign Up Page
    • 🔀Subscribe Page
    • 👤Account Page
    • 💸Membership Page
  • 🛠️Other Settings
    • 💬Comments
    • 📸Add Your Instagram Link (Icon)
  • ☑️Terms & Conditions
    • 🔁Refund Policy
Powered by GitBook
On this page
  1. Custom Settings

Background Colors

PreviousHeader TypeNextBorder Radius

Last updated 1 year ago

Paragraph supports customizing Background Color of the Hero section and the rest of the website.

The theme provides two CSS variables specifically designed to control the background colors of different sections:

  1. --hero-background-color: This variable sets the background color for the hero section.

  2. --main-background-color: This variable is used to define the main background color for the rest of the website, providing a consistent look and feel throughout the pages.

To customize:

  1. Access the Settings > Code Injection from the admin menu.

  2. Click Open

  3. In the provided space, specify the desired background-colors using the appropriate CSS variable. For example:

    <style>
        :root {
            --hero-background-color: #1A3939;
            --main-background-color: #F5F6F7;
        }
    </style>

  4. Click Save

⚙️
🎨