# Customization
Customizations are pretty straight forward. To customize Tailwind CSS related things refer to their official documentation (opens new window)
# Dark Mode
To enable Dark Mode by default:
- Add
darkclass tohtmlon/src/partials/_header.html
<!DOCTYPE html>
<html lang="en" class="dark"></html>
- Add
checkedattribute to Dark Mode Toggler on/src/partials/_navigation.html
<!-- Dark Mode -->
<label
class="switch switch_outlined"
data-toggle="tooltip"
data-tippy-content="Toggle Dark Mode"
>
<input id="darkModeToggler" type="checkbox" checked />
<span></span>
</label>
# Menu
There are 4 menu types:
- Default (with Icon and Text)
- Icon Only
menu-icon-only - Wide
menu-widev1.1+ - Hidden
menu-hidden
# Icon Only
To set menu type to Icon Only as a default,
- Add
menu-icon-onlyclass to thehtmlon/src/partials/_header.html
<!DOCTYPE html>
<html lang="en" class="menu-icon-only"></html>
- And add
menu-icon-onlyclass to menu bar on/src/partials/_navigation.html
<!-- Menu Bar -->
<aside class="menu-bar menu-icon-only"></aside>
# Wide v1.1+
To set menu type to Wide as a default,
- Add
menu-wideclass to thehtmlon/src/partials/_header.html
<!DOCTYPE html>
<html lang="en" class="menu-wide"></html>
- And add
menu-wideclass to menu bar on/src/partials/_navigation.html
<!-- Menu Bar -->
<aside class="menu-bar menu-wide"></aside>
# RTL Support v2.1+
To enable RTL by default:
- Change
dir="ltr"todir="rtl"inhtmlon/src/partials/_header.html
<!DOCTYPE html>
<html lang="en" dir="rtl"></html>
Please refer to the great plugin Tailwind Direction (opens new window) for more information.
# Branded Menu v3.0+
To enable Branded Menu by default:
- Add
menu_brandedclass to thehtmlon/src/partials/_header.html
<!DOCTYPE html>
<html lang="en" class="menu_branded"></html>
- And add
menu_brandedclass to menu bar on/src/partials/_navigation.html
<!-- Menu Bar -->
<aside class="menu-bar menu_branded"></aside>
# Themes v3.0+
There are 17 Color Themes:
- Default (Sky)
- Red
red - Orange
orange - Amber
amber - Yellow
yellow - Lime
lime - Green
green - Emerald
emerald - Teal
teal - Cyan
cyan - Blue
blue - Indigo
indigo - Violet
violet - Purple
purple - Fuchsia
fuchsia - Pink
pink - Rose
rose
To change the default theme:
- Add
theme-[VALUE]class to thehtmlon/src/partials/_header.html
<!DOCTYPE html>
<html lang="en" class="theme-[VALUE]"></html>
# 50 Shades of Gray v3.0+
There are 5 Primary Shades of Gray:
- Default (Pure)
- Slate
slate - Zinc
zinc - Neutral
neutral - Stone
stone
To change the default sahdes of gray:
- Add
gray-[VALUE]class to thehtmlon/src/partials/_header.html
<!DOCTYPE html>
<html lang="en" class="gray-[VALUE]"></html>
# Fonts v3.0+
There are 8 Font Combinations:
- Default (Nunito/Nunito Sans)
- Montserrat
montserrat - Raleway
raleway - Poppins
poppins - Oswald
oswald - Roboto Condensed/Roboto
roboto - Inter
inter - Yantramanav
yantramanav
To change the default fonts:
- Add
font-[VALUE]class to thehtmlon/src/partials/_header.html
<!DOCTYPE html>
<html lang="en" class="font-[VALUE]"></html>
← Installation Tools →