force dark mode in Laravel Nova

This commit is contained in:
Benjamin Takats
2022-11-29 21:31:45 +01:00
parent ecdfb0b4b9
commit e907b1b6cb
8 changed files with 118 additions and 13 deletions

View File

@@ -148,7 +148,7 @@ return [
|
*/
'currency' => 'USD',
'currency' => 'EUR',
/*
|--------------------------------------------------------------------------
@@ -162,15 +162,18 @@ return [
|
*/
// 'brand' => [
// 'logo' => resource_path('/img/example-logo.svg'),
'brand' => [
'logo' => resource_path('/img/einundzwanzig-horizontal-inverted.svg'),
// 'colors' => [
// "400" => "24, 182, 155, 0.5",
// "500" => "24, 182, 155",
// "600" => "24, 182, 155, 0.75",
// ]
// ],
'colors' => [
"400" => "247, 147, 26, 0.5", // rgba(247, 147, 26, 1)
"500" => "247, 147, 26, 0.75",
"600" => "247, 147, 26, 1",
// rgba(0, 180, 207, 1)
// rgba(21, 21, 21, 1)
]
],
/*
|--------------------------------------------------------------------------