mirror of
https://github.com/safishamsi/graphify.git
synced 2026-07-13 19:07:10 +00:00
1fbcaf840f
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
23 lines
353 B
PHP
23 lines
353 B
PHP
<?php
|
|
|
|
namespace App\Theme;
|
|
|
|
class DefaultPalette
|
|
{
|
|
public static string $primary = '#3366ff';
|
|
public static string $accent = '#ff6633';
|
|
}
|
|
|
|
class ColorResolver
|
|
{
|
|
public function primary(): string
|
|
{
|
|
return DefaultPalette::$primary;
|
|
}
|
|
|
|
public function accent(): string
|
|
{
|
|
return DefaultPalette::$accent;
|
|
}
|
|
}
|