Getting Started:

This guide will help you get started with Sweep!

All the important stuff – compiling the source, file structure, build tools, file includes – is documented here, but should you have any questions, always feel free to reach out to pixelwibes@gmail.com

If you really like our work, design, performance and support then please don't forgot to rate us on Templatemonster,
it really motivate us to provide something better.

Development Setup
File Structure
  • HTML
    • dist
      • Assets
        • bundles - Bundling plugins JS file
        • css - Compiled CSS
        • fonts - Google Font and Fontawesome
        • images - Image assets
        • js - Javascript source
        • plugin - Third party plugins
      • index.html
      • More HTML pages
    • node_modules ( npm installs dependencies. )
    • scss - SCSS source for theme
      • bootstrap -- Custom bootstrap components
      • generic -- Animation, Helpers class
      • global -- variables, mixins
      • plugin -- all plugin scss file
      • skeleton
      • theme -- core, high-contrast, themes-dark
      • widgets -- All widgets
      • main.scss
    • .gitignore
    • Gruntfile.js
    • package.json
  • Documentation
    • default
    • index -- Project All Information
Helper Class
Enable Light/Dark & High Contrast Mode!
<html class="no-js " lang="en" data-theme="light">
    
Change class in HTML tage .light, .dark, .theme-dark, & .high-contrast
Font Settings
<body class="layout font-fira">
    
.font-opensans, .font-quicksand, .font-fira, .font-raleway
Theme Color Settings
<body class="layout" data-sweep="theme-blue">
    
theme-blue, theme-indigo, theme-cyan, theme-green, theme-orange, theme-blush, theme-red, theme-dynamic
Enable Sidebar dark
<div class="sidebar dark">
    
Toggle class in sidebar .dark
Mini Sidebar
<div class="sidebar sidebar-mini">
    
Toggle class in sidebar .sidebar-mini
Enable RTL Mode!
<body class="layout rtl_mode">
    
Toggle class in Body tage .rtl_mode
Horizontal Menu
<body class="h-menu">
    
Just one click change (Vertical menu) to Horizontal Menubar. .h-menu
Page Header Dark Mode
<header class="page-header dark">
    
Toggle class in Page Header. .dark
Background Color
.bg-primary
.bg-secondary
.bg-primary-gradient
.bg-dark
.bg-light
.bg-body
.bg-card
Light Background Color
.bg-light-primary
.bg-light-success
.bg-light-danger
.bg-light-warning
.bg-light-info
Chart Background & Font Color

All chart Background & Text Color will be change based on theme color

.chart-text-color1
.chart-color1
.chart-text-color2
.chart-color2
.chart-text-color3
.chart-color3
.chart-text-color4
.chart-color4
.chart-text-color5
.chart-color5
Font Text Color
.text-primary
.text-secondary
.text-gradient
.color-fff
.color-100
.color-200
.color-300
.color-400
.color-500
.color-600
.color-700
.color-800
.color-900
Stater page
<!doctype html>
    <html class="no-js " lang="en">
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=Edge">
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
        <title>:: Sweep :: Dashboard</title>
        <link rel="icon" href="favicon.ico" type="image/x-icon"> <!-- Favicon-->
        <link rel="stylesheet" href="assets/css/sweep.style.min.css"> <!-- project css file  -->
    </head>
    <body class="layout" data-sweep="theme-blue">
    
        <!-- start: sidebar -->
        <div class="sidebar p-2 py-md-3"></div>
    
        <!-- start: body area -->
        <div class="wrapper">
    
            <!-- start: page header -->
            <header class="page-header sticky-top px-xl-4 px-sm-2 px-0 py-lg-2 py-1">
                <div class="container">
                    ......
                </div>
            </header>
    
            <!-- start: page toolbar -->
            <div class="page-toolbar px-xl-4 px-sm-2 px-0 py-3">
                <div class="container">
                    .......
                </div>
            </div>
    
            <!-- start: page body -->
            <div class="page-body px-xl-4 px-sm-2 px-0 py-lg-2 py-1 mt-3">
                <div class="container">
                    .......
                </div>
            </div>
    
            <!-- start: page footer -->
            <footer class="page-footer px-xl-4 px-sm-2 px-0 py-3">
                <div class="container-fluid d-flex flex-wrap justify-content-between align-items-center">
                    ........
                </div>
            </footer>
    
        </div>
    
        <!-- Rightbar Area -->
        <div class="rightbar card ">
            .......
        </div>
        <!-- Modal: Create NFT -->
        <div class="modal fade full-width" id="nftcreate" tabindex="-1">
            .......
        </div>
        <!-- Modal: Setting -->
        <div class="modal fade" id="SettingsModal" tabindex="-1">
            .......
        </div>
    
    <!-- Jquery Core Js -->
    <script src="assets/bundles/libscripts.bundle.js"></script>
    </body>
    </html>
Changelog
v1.0.0
   -- 04 SEP 2023
  • Initial release of Sweep! Lots more coming soon though
  • Sweep Version
    • Bootstrap v5.3.1