fix: update default color palette to better align with bolt

Change primary and neutral colors to better suit bolts design
This commit is contained in:
KevIsDev 2025-05-29 00:08:16 +01:00
parent cd37599f3b
commit 367c16fe43

View File

@ -6,14 +6,14 @@ export interface DesignScheme {
export const defaultDesignScheme: DesignScheme = {
palette: {
primary: '#7c3aed',
primary: '#9E7FFF',
secondary: '#38bdf8',
accent: '#f472b6',
background: '#f9fafb',
surface: '#ffffff',
text: '#18181b',
textSecondary: '#64748b',
border: '#e2e8f0',
background: '#171717',
surface: '#262626',
text: '#FFFFFF',
textSecondary: '#A3A3A3',
border: '#2F2F2F',
success: '#10b981',
warning: '#f59e0b',
error: '#ef4444',