Skip to content

Commit d759c4b

Browse files
committed
Update UI color scheme from purple to teal
Change accent color palette to match Brainiac Chat Interface design: - Replace purple accent colors with teal (#14B8A6 primary) - Update favicon and logo SVGs with new teal gradient - Update gradient colors in index.scss - Update QR modal background color
1 parent 3f6050b commit d759c4b

File tree

5 files changed

+27
-30
lines changed

5 files changed

+27
-30
lines changed

app/components/workbench/ExpoQrModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export const ExpoQrModal: React.FC<ExpoQrModalProps> = ({ open, onClose }) => {
3939
style={{
4040
borderRadius: 16,
4141
padding: 2,
42-
backgroundColor: '#8a5fff',
42+
backgroundColor: '#0D9488',
4343
}}
4444
value={expoUrl}
4545
size={200}

app/styles/index.scss

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,9 @@ body {
1616

1717
:root {
1818
--gradient-opacity: 0.8;
19-
--primary-color: rgba(158, 117, 240, var(--gradient-opacity));
20-
--secondary-color: rgba(138, 43, 226, var(--gradient-opacity));
21-
--accent-color: rgba(128, 59, 239, var(--gradient-opacity));
22-
// --primary-color: rgba(147, 112, 219, var(--gradient-opacity));
23-
// --secondary-color: rgba(138, 43, 226, var(--gradient-opacity));
24-
// --accent-color: rgba(180, 170, 220, var(--gradient-opacity));
19+
--primary-color: rgba(20, 184, 166, var(--gradient-opacity));
20+
--secondary-color: rgba(13, 148, 136, var(--gradient-opacity));
21+
--accent-color: rgba(45, 212, 191, var(--gradient-opacity));
2522
}
2623

2724
.modern-scrollbar {

public/favicon.svg

Lines changed: 1 addition & 1 deletion
Loading

public/logo.svg

Lines changed: 11 additions & 11 deletions
Loading

uno.config.ts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,17 @@ const BASE_COLORS = {
3535
950: '#0A0A0A',
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: '#F0FDFA',
39+
100: '#CCFBF1',
40+
200: '#99F6E4',
41+
300: '#5EEAD4',
42+
400: '#2DD4BF',
43+
500: '#14B8A6',
44+
600: '#0D9488',
45+
700: '#0F766E',
46+
800: '#115E59',
47+
900: '#134E4A',
48+
950: '#042F2E',
4949
},
5050
green: {
5151
50: '#F0FDF4',

0 commit comments

Comments
 (0)