first commit
Some checks failed
Build / run (push) Has been cancelled

This commit is contained in:
maher
2025-10-29 11:42:25 +01:00
commit 703f50a09d
4595 changed files with 385164 additions and 0 deletions

42
config/common/themes.php Executable file
View File

@@ -0,0 +1,42 @@
<?php
return [
'light' => [
'--be-foreground-base' => '0 0 0',
'--be-primary-light' => '251 146 60', //#fb923c
'--be-primary' => '249 115 22', //#f97316
'--be-primary-dark' => '234 88 12', //#ea580c
'--be-on-primary' => '255 255 255',
'--be-background' => '255 255 255',
'--be-background-alt' => '246 248 250',
'--be-background-chip' => '233 236 239',
'--be-paper' => '255 255 255',
'--be-disabled-bg-opacity' => '12%',
'--be-disabled-fg-opacity' => '26%',
'--be-hover-opacity' => '4%',
'--be-focus-opacity' => '12%',
'--be-selected-opacity' => '8%',
'--be-text-main-opacity' => '87%',
'--be-text-muted-opacity' => '60%',
'--be-divider-opacity' => '12%',
],
'dark' => [
'--be-foreground-base' => '255 255 255',
'--be-primary-light' => '251 146 60', //#b4cf9c
'--be-primary' => '249 115 22', //#689f38
'--be-primary-dark' => '234 88 12', //#527e2c
'--be-on-primary' => '255 255 255',
'--be-background' => '28 28 32',
'--be-background-alt' => '41 41 46',
'--be-background-chip' => '66 68 74',
'--be-paper' => '36 36 41',
'--be-disabled-bg-opacity' => '12%',
'--be-disabled-fg-opacity' => '30%',
'--be-hover-opacity' => '8%',
'--be-focus-opacity' => '12%',
'--be-selected-opacity' => '16%',
'--be-text-main-opacity' => '100%',
'--be-text-muted-opacity' => '70%',
'--be-divider-opacity' => '12%',
],
];