Add Lotus Terminal Mode + fix all remaining Cinny branding
- New: Lotus Terminal Mode toggle in Appearance settings - Red phosphor color scheme (bg #0a0000, primary #ff3300, accent #00dd66) - Monospace font override (JetBrains Mono / Fira Code / Cascadia Code) - Retro CRT scanline overlay via CSS pseudo-element - Wired into ThemeManager with dedicated lotusTerminalBodyClass - Branding: replace all user-visible Cinny references with Lotus Chat - WelcomePage, AuthLayout, SplashScreen, index.html meta tags - Device display names in login/register/token flows - System notification brand field - (Preserved internal Matrix protocol CinnySpaces event type) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -236,3 +236,100 @@ export const butterTheme = createTheme(color, {
|
||||
OnContainer: '#F2EED3',
|
||||
},
|
||||
});
|
||||
|
||||
export const lotusTerminalTheme = createTheme(color, {
|
||||
Background: {
|
||||
Container: '#0a0000',
|
||||
ContainerHover: '#140500',
|
||||
ContainerActive: '#1e0800',
|
||||
ContainerLine: '#2a0b00',
|
||||
OnContainer: '#ffd0b8',
|
||||
},
|
||||
|
||||
Surface: {
|
||||
Container: '#140500',
|
||||
ContainerHover: '#1e0800',
|
||||
ContainerActive: '#2a0b00',
|
||||
ContainerLine: '#360e00',
|
||||
OnContainer: '#ffd0b8',
|
||||
},
|
||||
|
||||
SurfaceVariant: {
|
||||
Container: '#1e0800',
|
||||
ContainerHover: '#2a0b00',
|
||||
ContainerActive: '#360e00',
|
||||
ContainerLine: '#421100',
|
||||
OnContainer: '#ffd0b8',
|
||||
},
|
||||
|
||||
Primary: {
|
||||
Main: '#ff3300',
|
||||
MainHover: '#ff4d1a',
|
||||
MainActive: '#ff5c2e',
|
||||
MainLine: '#ff6640',
|
||||
OnMain: '#0a0000',
|
||||
Container: '#3d0d00',
|
||||
ContainerHover: '#4a1000',
|
||||
ContainerActive: '#571300',
|
||||
ContainerLine: '#641600',
|
||||
OnContainer: '#ffb399',
|
||||
},
|
||||
|
||||
Secondary: {
|
||||
Main: '#00dd66',
|
||||
MainHover: '#00c75c',
|
||||
MainActive: '#00b352',
|
||||
MainLine: '#009e49',
|
||||
OnMain: '#0a0000',
|
||||
Container: '#003318',
|
||||
ContainerHover: '#00401e',
|
||||
ContainerActive: '#004d24',
|
||||
ContainerLine: '#005a2a',
|
||||
OnContainer: '#99ffcc',
|
||||
},
|
||||
|
||||
Success: {
|
||||
Main: '#00dd66',
|
||||
MainHover: '#00c75c',
|
||||
MainActive: '#00b352',
|
||||
MainLine: '#009e49',
|
||||
OnMain: '#0a0000',
|
||||
Container: '#003318',
|
||||
ContainerHover: '#00401e',
|
||||
ContainerActive: '#004d24',
|
||||
ContainerLine: '#005a2a',
|
||||
OnContainer: '#99ffcc',
|
||||
},
|
||||
|
||||
Warning: {
|
||||
Main: '#ffaa00',
|
||||
MainHover: '#e69900',
|
||||
MainActive: '#cc8800',
|
||||
MainLine: '#b37700',
|
||||
OnMain: '#0a0000',
|
||||
Container: '#332200',
|
||||
ContainerHover: '#402b00',
|
||||
ContainerActive: '#4d3300',
|
||||
ContainerLine: '#5a3c00',
|
||||
OnContainer: '#ffd980',
|
||||
},
|
||||
|
||||
Critical: {
|
||||
Main: '#ff6666',
|
||||
MainHover: '#ff5252',
|
||||
MainActive: '#ff3d3d',
|
||||
MainLine: '#ff2929',
|
||||
OnMain: '#0a0000',
|
||||
Container: '#3d0000',
|
||||
ContainerHover: '#4a0000',
|
||||
ContainerActive: '#570000',
|
||||
ContainerLine: '#640000',
|
||||
OnContainer: '#ffb3b3',
|
||||
},
|
||||
|
||||
Other: {
|
||||
FocusRing: 'rgba(255, 51, 0, 0.6)',
|
||||
Shadow: 'rgba(0, 0, 0, 1)',
|
||||
Overlay: 'rgba(0, 0, 0, 0.85)',
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user