PHP code example of bearly / ui

1. Go to this page and download the library: Download bearly/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/ */

    

bearly / ui example snippets

js
import colors from 'tailwindcss/colors'

export default {
    content: [
        // ...
        './vendor/bearly/ui/**/*.{php,blade.php}'
    ],

    theme: {
        extend: {
            colors: {
                primary: colors.cyan,
                secondary: colors.slate,
                success: colors.green,
                warning: colors.amber,
                error: colors.red,
            }
        }
    }

    // ...
}