Skip to content

Commit 9421d37

Browse files
committed
Apply cyan sci-fi color scheme
- Change accent colors from purple to cyan/turquoise (#00E5FF) - Update dark theme backgrounds to pure black for futuristic aesthetic - Apply cyan color palette to terminal colors - Add cyan glow effects to scrollbars - Matches JARVIS-style interface design
1 parent 3f6050b commit 9421d37

File tree

2 files changed

+33
-33
lines changed

2 files changed

+33
-33
lines changed

app/styles/variables.scss

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -192,26 +192,26 @@
192192

193193
/* Terminal Colors */
194194
--bolt-terminal-background: var(--bolt-elements-terminals-background);
195-
--bolt-terminal-foreground: #eff0eb;
196-
--bolt-terminal-selection-background: #97979b33;
195+
--bolt-terminal-foreground: #00E5FF;
196+
--bolt-terminal-selection-background: #00E5FF33;
197197
--bolt-terminal-black: #000000;
198-
--bolt-terminal-red: #ff5c57;
199-
--bolt-terminal-green: #5af78e;
200-
--bolt-terminal-yellow: #f3f99d;
201-
--bolt-terminal-blue: #57c7ff;
202-
--bolt-terminal-magenta: #ff6ac1;
203-
--bolt-terminal-cyan: #9aedfe;
204-
--bolt-terminal-white: #f1f1f0;
205-
--bolt-terminal-brightBlack: #686868;
206-
--bolt-terminal-brightRed: #ff5c57;
207-
--bolt-terminal-brightGreen: #5af78e;
208-
--bolt-terminal-brightYellow: #f3f99d;
209-
--bolt-terminal-brightBlue: #57c7ff;
210-
--bolt-terminal-brightMagenta: #ff6ac1;
211-
--bolt-terminal-brightCyan: #9aedfe;
212-
--bolt-terminal-brightWhite: #f1f1f0;
213-
--modern-scrollbar-thumb-background: rgba(100, 100, 100, 0.3); // Example dark theme color (adjust as needed)
214-
--modern-scrollbar-thumb-backgroundHover: rgba(10, 10, 10, 0.8);
198+
--bolt-terminal-red: #FF5C57;
199+
--bolt-terminal-green: #00E5FF;
200+
--bolt-terminal-yellow: #00FFD4;
201+
--bolt-terminal-blue: #00B8D4;
202+
--bolt-terminal-magenta: #66FFFF;
203+
--bolt-terminal-cyan: #00E5FF;
204+
--bolt-terminal-white: #CCFFFF;
205+
--bolt-terminal-brightBlack: #004D5C;
206+
--bolt-terminal-brightRed: #FF5C57;
207+
--bolt-terminal-brightGreen: #33FFFF;
208+
--bolt-terminal-brightYellow: #99FFFF;
209+
--bolt-terminal-brightBlue: #00D4FF;
210+
--bolt-terminal-brightMagenta: #99FFFF;
211+
--bolt-terminal-brightCyan: #CCFFFF;
212+
--bolt-terminal-brightWhite: #E0FFFF;
213+
--modern-scrollbar-thumb-background: rgba(0, 229, 255, 0.3);
214+
--modern-scrollbar-thumb-backgroundHover: rgba(0, 229, 255, 0.6);
215215
}
216216

217217
/*

uno.config.ts

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -30,22 +30,22 @@ const BASE_COLORS = {
3030
500: '#737373',
3131
600: '#525252',
3232
700: '#404040',
33-
800: '#262626',
34-
900: '#171717',
35-
950: '#0A0A0A',
33+
800: '#1A1A1A',
34+
900: '#0D0D0D',
35+
950: '#000000',
3636
},
3737
accent: {
38-
50: '#F8F5FF',
39-
100: '#F0EBFF',
40-
200: '#E1D6FF',
41-
300: '#CEBEFF',
42-
400: '#B69EFF',
43-
500: '#9C7DFF',
44-
600: '#8A5FFF',
45-
700: '#7645E8',
46-
800: '#6234BB',
47-
900: '#502D93',
48-
950: '#2D1959',
38+
50: '#E0FFFF',
39+
100: '#CCFFFF',
40+
200: '#99FFFF',
41+
300: '#66FFFF',
42+
400: '#33FFFF',
43+
500: '#00E5FF',
44+
600: '#00B8D4',
45+
700: '#0091A8',
46+
800: '#006B7D',
47+
900: '#004D5C',
48+
950: '#001F29',
4949
},
5050
green: {
5151
50: '#F0FDF4',

0 commit comments

Comments
 (0)