Tide is a client area theme for FOSSBilling. It's designed to enhance your user interface with a clean, modern aesthetic. This guide provides steps on how to install, upgrade, secure, and customize the Tide theme.
Follow these steps to install the Tide theme:
-
Download or clone this repository.
- If you downloaded a ZIP file, extract it first.
- If you cloned the repository, locate the main project folder.
-
Inside the downloaded/cloned files, you will find a directory containing the theme files (for example:
tide-main,tide-v1.1.0, or similar). -
Rename this directory to
tide. -
Move the renamed
tidedirectory into your FOSSBilling themes folder:FOSSBilling directory/themes. -
Change the directory owner to the user your web server runs under. For example:
chown -Rf www-data:www-data tide/. -
Set permissions to
750using chmod:chmod -Rf 750 tide/. -
Navigate to
Settings -> Themesin the FOSSBilling admin panel and selecttideas the default theme.
To upgrade to a newer version of the Tide theme, perform the following:
-
Download or clone this repository.
- If you downloaded a ZIP file, extract it first.
- If you cloned the repository, locate the main project folder.
-
Inside the downloaded/cloned files, you will find a directory containing the theme files (for example:
tide-main,tide-v1.1.0, or similar). -
Rename this directory to
tide. -
Backup your
FOSSBilling directory/themes/tide/config/settings_data.jsonand any custom assets located atFOSSBilling directory/themes/tide/assets/customandFOSSBilling directory/themes/tide/html/custom. -
Move the renamed
tidedirectory into your FOSSBilling themes folder:FOSSBilling directory/themes, overwriting all files. -
Restore your
settings_data.jsonand any custom assets from the backup. -
Change the directory owner to the web server user. For example:
chown -Rf www-data:www-data tide/. Set permissions to750using chmod:chmod -Rf 750 tide/.
If you customized your CSS in v1.1.3 or earlier, move FOSSBilling directory/themes/tide/assets/css/extra.css to FOSSBilling directory/themes/tide/assets/custom/extra.css before upgrading and follow Section 2 of the Theme Customization section below.
For versions of Tide installed prior to 0.9.5, implement these security measures:
- Change the directory owner to the web server user. For example:
chown -Rf www-data:www-data tide/. - Set permissions to
750using chmod:chmod -Rf 750 tide/.
Tide is designed to be safely customizable without modifying core template files.
To prevent your changes from being overwritten during updates, use the supported customization methods below.
Tide provides optional hook points that allow you to extend specific dashboard areas without editing core files.
To use them, create the following files inside FOSSBilling directory/themes/tide/html/custom/:
dashboard.top.twig – customizes the top area of the dashboard
dashboard.widgets.twig – customizes the widgets section
dashboard.bottom.twig – customizes the bottom area of the dashboard
Each file corresponds to its respective dashboard area.
It is safe if one or more of these files are missing — Tide will continue to function normally.
For consistent layout and spacing, follow the default Tide dashboard structure:
- For
dashboard.top.twiganddashboard.bottom.twig, wrap your content inside a Bootstraprow row-cardscontainer and place elements insidecardcomponents. - For
dashboard.widgets.twig, use a standardrow, as it is already rendered within the dashboard widgets grid context.
This ensures visual consistency with the default Tide dashboard styling.
Tide allows you to replace the default colours with custom ones, so you can align the theme with your branding.
- Create the following file to load your custom CSS automatically:
FOSSBilling directory/themes/tide/html/custom/head.extra.twig
Paste this content inside:
<link href="{{ 'custom/extra.css' | asset_url }}" rel="stylesheet"/>- Create
FOSSBilling directory/themes/tide/assets/custom/extra.cssand place your custom CSS overrides inside it, following the example below.
.bg-primary {
background-color: #your-color !important;
}
.text-primary {
color: #your-color !important;
}
.btn-primary {
background-color: #your-color !important;
border-color: #your-color !important;
}
.btn-primary:hover {
background-color: #your-hover-color !important;
border-color: #your-hover-color !important;
}
.btn-primary:focus {
background-color: #your-focus-color !important;
border-color: #your-focus-color !important;
box-shadow: 0 0 0 0.2rem rgba(#your-color, 0.5) !important;
}
.btn-primary:active {
background-color: #your-active-color !important;
border-color: #your-active-color !important;
}
.btn-primary:disabled {
background-color: #your-disabled-color !important;
border-color: #your-disabled-color !important;
}Because this file is placed under assets/custom/, it is not part of the standard Tide files and will not be rewritten during a normal update.
Backups are still encouraged as a best practice. However, you should not need to restore this file after upgrading unless your update process deletes the entire theme folder.
Your feedback and inquiries are invaluable to Namingo's evolutionary journey. If you need support, have questions, or want to contribute your thoughts:
-
Email: Feel free to reach out directly at help@namingo.org.
-
Discord: Or chat with us on our Discord channel.
-
GitHub Issues: For bug reports or feature requests, please use the Issues section of our GitHub repository.
We appreciate your involvement and patience as Namingo continues to grow and adapt.
If you find Tide useful, consider donating:
- Donate via Stripe
- BTC:
bc1q9jhxjlnzv0x4wzxfp8xzc6w289ewggtds54uqa - ETH:
0x330c1b148368EE4B8756B176f1766d52132f0Ea8
Tide is licensed under the Apache License, Version 2.0 starting from version 1.1.
Versions 1.0 and earlier are licensed under the MIT License.
This project includes and builds upon code from Huraga, the default template of the FOSSBilling platform.

