SCSS structure
We have used scss for styling the website, as it makes the development process fast and convenient for the developers. Below given is a detailed explanation of the scss folder structure, so that if you want to make any changes in your personal theme then you can make changes easily.
If you want to use scss so you need to follow some steps for compilation process
You can find scss folder on the following path: public >> assets >> scss
- public
- assets
- scss
- base
- components // all
components scss
- layout
- pages
- themes
- utils
- vendors // All plugins scss
folder and files here
- animate
- aos
- bootstrap
- button-builder
- calendar
- chartist
- data-table
- datatable-extension
- date-picker
- daterange-picker
- date-time-picker
- dropzone
- echart
- feather-icon
- flag-icon
- icoicon
- image-cropper
- jsgrid
- owltheme
- page-builder
- photoswipe
- prism
- range-slider
- rating
- scrollable
- scrollbar
- select2
- simple-mde
- sticky
- summernote
- svg-icon
- sweetalert2-master
- themify
- time-picker
- todo
- tour
- tree
- vector-map
- whether-icon
- animate
- base
- scss
- assets
If you want to add new scss so you can add in _custom.scss file
because we are update template in future at that time you can take
update template easily and use it
only one custom scss file you need to put from your side
Intelligent customization using scss
You can change in assets/scss/utils/_variables.scss file
Common settings
| Variables set | Content |
|---|---|
$theme-body-font-color: #1F2F3E; |
whole themplate body font color set here |
For font family
$font-Outfit: Outfit; |
set Body font family |
$font-roboto: Roboto; |
set second font family |
For main color settings
$primary-color: #6271EB; |
All color template settings |
$secondary-color: #FF8575; |
|
$success-color: #53A653; |
|
$info-color: #01A1B9; |
|
$warning-color: #FFAA05; |
|
$danger-color: #DC3545; |
|
$light-color: #F3F3F3; |
|
For sidebar settings
$sidebar-width: 253px; |
set sidebar width |
$sidebar-background-color: #FFFF; |
set sidebar background color |
$sidebar-shadow: 0 0 11px rgba(69, 110, 243, 0.13); |
set sidebar shadow color |
$sidebar-overflow: auto; |
set sidebar overflow scroll |
$sidebar-z-index: 9; |
set sidebar z index |
For card settings
$card-padding: 16px; |
set common card spacing |
$card-margin-bottom: 30px; |
set common card outside spacing |
$card-border: 1px solid $light-gray; |
set card border |
$card-border-radius: 10px; |
set card border radius |
$card-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.03) |
set card box shadow |