Portal (luci-app-secubox-portal): - Fix service status showing 0/9 by checking if init scripts exist - Only count installed services in status display - Use pgrep fallback when init script status fails nDPId Dashboard (luci-app-ndpid): - Add default /etc/config/ndpid configuration - Add /etc/init.d/ndpid-compat init script - Enable compat service in postinst for app detection - Fix Makefile to install init script and config CrowdSec Dashboard: - Add CLAUDE.md with OpenWrt-specific guidelines (pgrep without -x) - CSS fixes for hiding LuCI left menu in all views - LAPI repair improvements with retry logic New Packages: - secubox-app-crowdsec: OpenWrt-native CrowdSec package - secubox-app-netifyd: Netifyd DPI integration - luci-app-secubox: Core SecuBox hub - luci-theme-secubox: Custom theme Removed: - luci-app-secubox-crowdsec (replaced by crowdsec-dashboard) - secubox-crowdsec-setup (functionality moved to dashboard) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
51 lines
1.5 KiB
CSS
51 lines
1.5 KiB
CSS
/**
|
|
* Sunset Theme - Warm Coral/Orange
|
|
* An energetic, warm theme inspired by tropical sunsets
|
|
*/
|
|
|
|
body[data-secubox-theme="sunset"] {
|
|
/* Backgrounds */
|
|
--cyber-bg-primary: #1a0033;
|
|
--cyber-bg-secondary: #2d0a52;
|
|
--cyber-bg-tertiary: #3e1470;
|
|
--cyber-surface: #4e1d8c;
|
|
--cyber-surface-light: #5e26a8;
|
|
|
|
/* Text */
|
|
--cyber-text-primary: #fff5ed;
|
|
--cyber-text-secondary: #fed7aa;
|
|
--cyber-text-muted: #fdba74;
|
|
--cyber-text-inverse: #1a0033;
|
|
|
|
/* Accent Colors */
|
|
--cyber-accent-primary: #ff6b35;
|
|
--cyber-accent-primary-end: #f72585;
|
|
--cyber-accent-secondary: #ffa500;
|
|
--cyber-accent-tertiary: #ff8c42;
|
|
|
|
/* Semantic Colors */
|
|
--cyber-success: #22c55e;
|
|
--cyber-success-soft: rgba(34, 197, 94, 0.15);
|
|
--cyber-warning: #fb923c;
|
|
--cyber-warning-soft: rgba(251, 146, 60, 0.15);
|
|
--cyber-danger: #dc2626;
|
|
--cyber-danger-soft: rgba(220, 38, 38, 0.15);
|
|
--cyber-info: #3b82f6;
|
|
--cyber-info-soft: rgba(59, 130, 246, 0.15);
|
|
|
|
/* Borders & Effects */
|
|
--cyber-border: 1px solid rgba(255, 165, 0, 0.15);
|
|
--cyber-border-strong: 1px solid rgba(255, 165, 0, 0.3);
|
|
--cyber-glass-bg: rgba(255, 107, 53, 0.08);
|
|
--cyber-glass-border: rgba(255, 165, 0, 0.12);
|
|
|
|
/* Gradients */
|
|
--cyber-gradient-primary: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%);
|
|
|
|
/* Background */
|
|
background: radial-gradient(circle at 30% 20%, rgba(255, 165, 0, 0.25), transparent 45%),
|
|
radial-gradient(circle at 70% 80%, rgba(247, 37, 133, 0.2), transparent 50%),
|
|
var(--cyber-bg-primary);
|
|
color: var(--cyber-text-primary);
|
|
}
|