- button-bg lighter (#565970) to stand out from bg-secondary - Border on DarkButton and DarkComboBox (#6272a4) - Primary button: dark text on purple bg - Tab titles: inactive #9a9ebb (was #6272a4), 13px, bold 700 when active Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
24 lines
945 B
Text
24 lines
945 B
Text
// Dracula theme colors (matching the egui version)
|
|
export global Theme {
|
|
// Backgrounds
|
|
out property <color> bg-primary: #282a36;
|
|
out property <color> bg-secondary: #44475a;
|
|
out property <color> bg-surface: #1e1e2e;
|
|
// Text
|
|
out property <color> fg-primary: #f8f8f2;
|
|
out property <color> fg-secondary: #6272a4;
|
|
// Accents
|
|
out property <color> accent-purple: #bd93f9;
|
|
out property <color> accent-green: #50fa7b;
|
|
out property <color> accent-cyan: #8be9fd;
|
|
out property <color> accent-red: #ff5555;
|
|
out property <color> accent-yellow: #f1fa8c;
|
|
out property <color> accent-orange: #ffb86c;
|
|
out property <color> accent-pink: #ff79c6;
|
|
// UI elements
|
|
out property <color> connected: #50fa7b;
|
|
out property <color> disconnected: #ff5555;
|
|
out property <color> button-bg: #565970;
|
|
out property <color> button-hover: #6272a4;
|
|
out property <color> button-border: #6272a4;
|
|
}
|