adasd
All checks were successful
Deploy / deploy (push) Successful in 1m5s

This commit is contained in:
2026-07-29 21:46:16 +02:00
parent f0ff95679b
commit caa5b86414
2 changed files with 9 additions and 9 deletions

View File

@@ -153,8 +153,8 @@ return [
'color_controls' => [ 'color_controls' => [
'baseColor' => [ 'baseColor' => [
'label' => 'Basisfarbe', 'label' => 'Basisfarbe',
'default' => '#e7ba9a', 'default' => '#ffffff',
'samples' => ['#f4d2ba', '#e7ba9a', '#c98f69', '#8a5638'], 'samples' => ['#ffffff', '#f4d2ba', '#e7ba9a', '#c98f69', '#8a5638'],
'allow_custom' => true, 'allow_custom' => true,
], ],
'eyepatchColor' => [ 'eyepatchColor' => [
@@ -177,8 +177,8 @@ return [
], ],
'backgroundColor' => [ 'backgroundColor' => [
'label' => 'Hintergrund', 'label' => 'Hintergrund',
'default' => '#f2eadf', 'default' => '',
'samples' => ['#f2eadf', '#e6dccd', '#d9e8ef', '#efe0d0'], 'samples' => [],
'allow_custom' => true, 'allow_custom' => true,
], ],
], ],
@@ -194,10 +194,10 @@ return [
'mustacheVariant' => '', 'mustacheVariant' => '',
], ],
'colors' => [ 'colors' => [
'baseColor' => '#e7ba9a', 'baseColor' => '#ffffff',
'topColor' => '#4f6ea8', 'topColor' => '#4f6ea8',
'glassesColor' => '#283341', 'glassesColor' => '#283341',
'backgroundColor' => '#f2eadf', 'backgroundColor' => '',
], ],
], ],
], ],

View File

@@ -30,7 +30,7 @@ final class Croodles
'mustacheVariant' => '', 'mustacheVariant' => '',
'noseVariant' => '', 'noseVariant' => '',
'topVariant' => '', 'topVariant' => '',
'baseColor' => '', 'baseColor' => '#ffffff',
'eyepatchColor' => '', 'eyepatchColor' => '',
'glassesColor' => '', 'glassesColor' => '',
'topColor' => '', 'topColor' => '',
@@ -67,11 +67,11 @@ final class Croodles
public static function colorDefinitions(): array public static function colorDefinitions(): array
{ {
return [ return [
'baseColor' => ['label' => 'Basisfarbe', 'default' => '#e7ba9a'], 'baseColor' => ['label' => 'Basisfarbe', 'default' => '#ffffff'],
'eyepatchColor' => ['label' => 'Augenklappe', 'default' => '#283341'], 'eyepatchColor' => ['label' => 'Augenklappe', 'default' => '#283341'],
'glassesColor' => ['label' => 'Brille', 'default' => '#283341'], 'glassesColor' => ['label' => 'Brille', 'default' => '#283341'],
'topColor' => ['label' => 'Top-Farbe', 'default' => '#4f6ea8'], 'topColor' => ['label' => 'Top-Farbe', 'default' => '#4f6ea8'],
'backgroundColor' => ['label' => 'Hintergrund', 'default' => '#f2eadf'], 'backgroundColor' => ['label' => 'Hintergrund', 'default' => ''],
]; ];
} }