[ // The package's whole CSS in the Workbench's one entry now that Tailwind is gone // (plan step 39), and the JavaScript. 'workbench/resources/css/app.css', 'workbench/resources/js/app.js', ]]); // Three colour profiles, generated into workbench/resources/css/material-scheme.css with // `vendor/bin/testbench material:scheme --output=workbench/resources/css/material-scheme.css`. // Baseline is the package's own default, so the stylesheet draws it as before; the showcase // offers the others. Tests start without profiles and point at the file when they need it. config([ 'livewire-material.profiles' => [ 'baseline' => ['label' => 'Baseline', 'seed' => '#6750a4', 'variant' => 'tonal-spot'], 'teal' => ['label' => 'Teal', 'seed' => '#00897b', 'variant' => 'vibrant'], 'rose' => ['label' => 'Rose', 'seed' => '#c2185b', 'variant' => 'vibrant'], ], 'livewire-material.profile' => 'baseline', ]); if (! $this->app->runningUnitTests()) { config(['livewire-material.scheme' => workbench_path('resources/css/material-scheme.json')]); } Vite::useHotFile(workbench_path('public/hot')); } }