Package Data | |
---|---|
Maintainer Username: | zachleigh |
Maintainer Contact: | zachleigh@fastmail.jp (Zach Leigh) |
Package Create Date: | 2016-03-22 |
Package Last Update: | 2016-08-24 |
Home Page: | |
Language: | CSS |
License: | MIT |
Last Refreshed: | 2024-11-09 15:00:22 |
Package Statistics | |
---|---|
Total Downloads: | 688 |
Monthly Downloads: | 2 |
Daily Downloads: | 1 |
Total Stars: | 3 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
laravel-colors allows you to view, create, and edit your project's color scheme in the browser. It reads the sass file where your color variables are declared and displays these colors in the browser. It also allows you to create and edit color schemes and save them to your database.
Notes:
Install through composer:
composer require zachleigh/laravel-colors
Once installed, register the service provider in your Laravel project. Because laravel-colors is for development use only, conditionally load the provider in your project's AppServiceProvider register method and import the namespace at the top of the file.
use Illuminate\Support\ServiceProvider;
use LaravelColors\LaravelColorsServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
//
if ($this->app->environment('local')) {
$this->app->register(LaravelColorsServiceProvider::class);
}
}
}
Next, publish the config file.
php artisan vendor:publish --provider="LaravelColors\LaravelColorsServiceProvider" --force
This will move the config file to App/config/laravel-colors.php. This file has two values, 'route' and 'sass_file'. 'route' is the url where your project's color scheme can be seen in the browser. The default route is '/laravel-colors/colors'. 'sass_file' is the location of your sass colors file. This file will be read by laravel-colors. If you do not have a sass file or do not want laravel-colors to attempt to read a file, set 'sass_file' to 'none' and the default color scheme will be used.
The publish command will also put a migration in App/database/migrations/. This migration sets up the database table used to store your color schemes. Run the migration:
php artisan migrate
Finished. Now simply visit the route defined in the config file in your browser and see your project's color scheme in all its beautiful glory.
Pull requests are welcome.