Diamonds Theme
SaaSykit comes with a modern theme called "Diamonds" that is fully customizable. You can change the colors, fonts, and styles of the theme to match your brand.
The theme features a clean and modern design with focus on simplicity, space, bigger fonts, and beautifully-designed sections.

To check the Diamonds theme in action, please watch the following video:
Installationโ
To install the Diamonds theme, please follow the steps below:
- Go to the Diamonds theme repository and clone the repository or download the ZIP file and unzip it.
- Copy the contents of
resources/views
folder into theresources/views
folder of your SaaSykit/SaaSykit Tenancy installation. (If you want to compare how different themes look like to pick the best one, please see the section below) - Copy the folder
resources/svg/diamonds
into theresources/svg
folder of your SaaSykit/SaaSykit Tenancy installation. - Copy the folder
public/images/diamonds
into thepublic/images
folder of your SaaSykit/SaaSykit Tenancy installation. - Copy the
tailwind.config.js
file into the root folder of your SaaSykit/SaaSykit Tenancy installation. (In case you did some changes in thetailwind.config.js
file, make sure to merge the changes with the Diamonds theme file)
That's it!
Now run:
npm run dev
to compile the assets, and you are ready to go!
Comparing Themesโ
If you want to compare the Diamonds theme with the default theme or other themes that comes with SaaSykit to see which one fits your site better, you might not want to overwrite the folder resources/views
(step 2) with the Diamonds theme, instead:
- Copy the contents of the Diamonds theme into a new folder called
diamonds
inside theresources/views
folder of your SaaSykit/SaaSykit Tenancy installation. - Then publish the views configuration file by running the following command:
php artisan config:publish
Choose the "view" option from the select list. This will create a new file called config/views.php
in the config
folder of your SaaSykit/SaaSykit Tenancy installation.
- Then you can change the
paths
value in theconfig/views.php
file to point to the Diamonds theme folder:
'paths' => [
resource_path('views') . '/diamonds',
],
This will point the views to the Diamonds theme folder instead of the default views folder. You can switch between themes by changing the paths
value in the config/views.php
file and refresh the website to compare the themes.