PHP code example of ironflow / halo-ui

1. Go to this page and download the library: Download ironflow/halo-ui library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

ironflow / halo-ui example snippets


// config/halo.php
'design' => [
    'style' => 'modern', // modern, minimal, brutalist, glassmorphism
]

'colors' => [
    'primary' => [
        500 => '#your-color',
        600 => '#your-hover-color',
    ],
]
bash
# Publish configuration
php artisan vendor:publish --tag=halo-config

# Publish assets
php artisan vendor:publish --tag=halo-assets

# Publish templates (optional)
php artisan vendor:publish --tag=halo-templates