🔬
Documentation
  • 👋Development Documentation
  • Overview
    • 💡What we do
    • ✨Our Features
  • Product Guides
    • 📪Making a post
    • 📎Understanding Projects
  • Fundamentals
    • 🛠️Getting set up
      • 📝Setting permissions
      • 🧑Inviting Members
  • Use Cases
    • 🎨For Designers
    • Page 1
    • 🖥️For Developers
      • Example of .gitignore
      • Cusotm Theme File Sync script for specified directories with auto git commit
    • ◀️List of Plugins
    • 👨‍💻Tips and Tricks
      • CLI schedule task and consume service
      • ♻️Automatic database backup (Updated)
      • 🛠️Execute a command from host to docker using terminal
      • 📋Shopware 6 commands
      • 😀Activate all plugins via CLI
      • ☠️Kill a process on a port [Linux]
      • 📄How do you import the database using CLI
      • 👨‍🔧Change PHP Configuration [Terminal]
      • 👁️Access to PHP Path Aixspro
      • 🌐Manage Apache services [Linux]
    • 📄SQL Tips & Tricks (shopware 6)
Powered by GitBook
On this page
  1. Use Cases

For Designers

This guide provides overall outlook of design approach

Good to know: There are two themes Swissbatt24 and Voltimax. A lot of the designs are derived from swissbatt24. as a result, I have given two themes colors code in below snippets. find responsible color codes based on your websites preferences.

Theme colors

 /* Theme Colours */
:style-swissbatt24{
   /* Primary Colour */
  --primary-color: #fd6565;
  
  /* Secondary Colour */
  --secondary-color: #f0f0f0;
  
  /* Border Colour */
  --border-color: #f0f0f0;
  
  /* Background Colour */
  --background-color: #fff;
  
  /* Status Messages */
  /* Success */
  --success-color: #3cc261;
  
  /* Information */
  --info-color: #26b6cf;
  
  /* Notice */
  --notice-color: #ffbd5d;
  
  /* Error */
  --error-color: #e52427;
  
  /* Typography */
  /* Font type Text */
  --font-text: "TT Mussels", sans-serif;
  
  /* Text Colour */
  --text-color: #474747;
  
  /* Font type Headline */
  --font-headline: "TT Mussels", sans-serif;
  
  /* Headline Colour */
  --headline-color: #2A5B66;
  
  /* E-Commerce */
  /* Price */
  --price-color: #474747;
  
  /* Buy Button */
  --buy-button-color: #fd6565;
  
  /* Buy Button Text */
  --buy-button-text-color: #fff;
}

/* Example usage */

/* Set the background color */
body {
  background-color: #fff;
}

/* Set the primary color for a button */
button {
  background-color: #fd6565;
}

/* Set the font family and color for text */
p {
  font-family: "TT Mussels", sans-serif;
  color: #474747;
}

/* Set the font family, color, and background for a headline */
h1 [any h element] {
  font-family: "TT Mussels", sans-serif;
  color: #2A5B66;
  background-color: #f0f0f0;
}

/* Set the color for a success message */
.success {
  color: #3cc261;
}

/* Set the color for an error message */
.error {
  color: #e52427;
}

/* Set the color for a buy button */
.buy-button {
  background-color: #fd6565;
  color: #fff;
}

/* Theme Colours */
:style-voltimax {
  /* Primary Colour */
  --primary-color: #F3B664;
  
  /* Secondary Colour */
  --secondary-color: #f0f0f0;
  
  /* Border Colour */
  --border-color: #f0f0f0;
  
  /* Background Colour */
  --background-color: #fff;
  
  --background-dark-color: #2F4858;
  
  /* Status Messages */
  /* Success */
  --success-color: #3cc261;
  
  /* Information */
  --info-color: #26b6cf;
  
  /* Notice */
  --notice-color: #ffbd5d;
  
  /* Error */
  --error-color: #e52427;
  
  /* Typography */
  /* Font type Text */
  --font-text: "TT Mussels", sans-serif;
  
  /* Text Colour */
  --text-color: #474747;
  
  /* Font type Headline */
  --font-headline: "TT Mussels", sans-serif;
  
  /* Headline Colour */
  --headline-color: #21656F;
  
  /* E-Commerce */
  /* Price */
  --price-color: #474747;
  
  /* Buy Button */
  --buy-button-color: #F3B664;
  
  /* Buy Button Text */
  --buy-button-text-color: #474747;
}

/* Example usage */

/* Set the background color */
body {
  background-color: #fff;

}

/* Set the primary color for a button */
button {
  background-color: #F3B664;
}

/* Set the font family and color for text */
p {
  font-family: "TT Mussels", sans-serif;
  color: #474747;
}

/* Set the font family, color, and background for a headline */
h1 [any h element] {
  font-family: "TT Mussels", sans-serif;
  color: #21656F;
}

/* Set the color for a success message */
.success {
  color: #3cc261;
}

/* Set the color for an error message */
.error {
  color: #e52427;
}

/* Set the color for a buy button */
.buy-button {
  background-color: #F3B664;
  color: #474747;
}
PreviousInviting MembersNextPage 1

Last updated 1 year ago

🎨