Skip to content

Commit 51e146f

Browse files
[WEB-4488] feat: brand revamp (#7544)
* chore: empty state asset and theme improvement (#7542) * chore: empty state asset and theme improvement * chore: upgrade modal improvement and code refactor * feat: onboarding revamp and theme changes (#7541) * refactor: consolidate password strength indicator into shared UI package * chore: remove old password strength meter implementations * chore: update package dependencies for password strength refactor * chore: code refactor * chore: brand logo added * chore: terms and conditions refactor * chore: auth form refactor * chore: oauth enhancements and refactor * chore: plane new logos added * chore: auth input form field added to ui package * chore: password input component added * chore: web auth refactor * chore: update brand colors and remove onboarding-specific styles * chore: clean up unused assets * chore: profile menu text overflow * chore: theme related changes * chore: logo spinner updated * chore: onboarding constant and types updated * chore: theme changes and code refactor * feat: onboarding flow revamp * fix: build error and code refactoring * chore: code refactor * fix: build error * chore: consent option added to onboarding and code refactor * fix: build fix * chore: code refactor * chore: auth screen revamp and code refactor * chore: onboarding enhancements * chore: code refactor * chore: onboarding logic improvement * chore: code refactor * fix: onboarding pre release improvements * chore: color token updated * chore: color token updated * chore: auth screen line height and size improvements * chore: input height updated * chore: n-progress theme updated * chore: theme and logo enhancements * chore: space auth and code refactor * chore: update new brand empty states (#7543) * [WEB-4585]chore: branding updates (#7540) * chore: updated logo, og image, and loaders * chore: updated branding colors * chore: tour modal logo * chore: updated logo spinner size * chore: updated email templates logos and colors * chore: code refactor * fix: removed conditional hook render * fix: space app loader --------- Co-authored-by: Vamsi Krishna <46787868+vamsikrishnamathala@users.noreply.github.com> Co-authored-by: vamsikrishnamathala <matalav55@gmail.com>
1 parent 6450793 commit 51e146f

File tree

345 files changed

+5133
-2490
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

345 files changed

+5133
-2490
lines changed

apps/admin/app/(all)/(dashboard)/sidebar-dropdown.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export const AdminSidebarDropdown = observer(() => {
4242
)}
4343
>
4444
<div className="flex flex-col gap-2.5 pb-2">
45-
<span className="px-2 text-custom-sidebar-text-200">{currentUser?.email}</span>
45+
<span className="px-2 text-custom-sidebar-text-200 truncate">{currentUser?.email}</span>
4646
</div>
4747
<div className="py-2">
4848
<Menu.Item
2.92 KB
Loading
10.3 KB
Loading
4.02 KB
Loading
-1.13 KB
Loading
-856 Bytes
Loading
14.1 KB
Binary file not shown.

apps/admin/public/favicon/site.webmanifest

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"name": "",
33
"short_name": "",
44
"icons": [
5-
{ "src": "/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" },
6-
{ "src": "/android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" }
5+
{ "src": "/favicon/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" },
6+
{ "src": "/favicon/android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" }
77
],
88
"theme_color": "#ffffff",
99
"background_color": "#ffffff",

apps/admin/styles/globals.css

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -24,24 +24,24 @@
2424
:root {
2525
color-scheme: light !important;
2626

27-
--color-primary-10: 236, 241, 255;
28-
--color-primary-20: 217, 228, 255;
29-
--color-primary-30: 197, 214, 255;
30-
--color-primary-40: 178, 200, 255;
31-
--color-primary-50: 159, 187, 255;
32-
--color-primary-60: 140, 173, 255;
33-
--color-primary-70: 121, 159, 255;
34-
--color-primary-80: 101, 145, 255;
35-
--color-primary-90: 82, 132, 255;
36-
--color-primary-100: 63, 118, 255;
37-
--color-primary-200: 57, 106, 230;
38-
--color-primary-300: 50, 94, 204;
39-
--color-primary-400: 44, 83, 179;
40-
--color-primary-500: 38, 71, 153;
41-
--color-primary-600: 32, 59, 128;
42-
--color-primary-700: 25, 47, 102;
43-
--color-primary-800: 19, 35, 76;
44-
--color-primary-900: 13, 24, 51;
27+
--color-primary-10: 229, 243, 250;
28+
--color-primary-20: 216, 237, 248;
29+
--color-primary-30: 199, 229, 244;
30+
--color-primary-40: 169, 214, 239;
31+
--color-primary-50: 144, 202, 234;
32+
--color-primary-60: 109, 186, 227;
33+
--color-primary-70: 75, 170, 221;
34+
--color-primary-80: 41, 154, 214;
35+
--color-primary-90: 34, 129, 180;
36+
--color-primary-100: 0, 99, 153;
37+
--color-primary-200: 0, 92, 143;
38+
--color-primary-300: 0, 86, 133;
39+
--color-primary-400: 0, 77, 117;
40+
--color-primary-500: 0, 66, 102;
41+
--color-primary-600: 0, 53, 82;
42+
--color-primary-700: 0, 43, 66;
43+
--color-primary-800: 0, 33, 51;
44+
--color-primary-900: 0, 23, 36;
4545

4646
--color-background-100: 255, 255, 255; /* primary bg */
4747
--color-background-90: 247, 247, 247; /* secondary bg */
@@ -197,6 +197,25 @@
197197
[data-theme="dark-contrast"] {
198198
color-scheme: dark !important;
199199

200+
--color-primary-10: 8, 31, 43;
201+
--color-primary-20: 10, 37, 51;
202+
--color-primary-30: 13, 49, 69;
203+
--color-primary-40: 16, 58, 81;
204+
--color-primary-50: 18, 68, 94;
205+
--color-primary-60: 23, 86, 120;
206+
--color-primary-70: 28, 104, 146;
207+
--color-primary-80: 31, 116, 163;
208+
--color-primary-90: 34, 129, 180;
209+
--color-primary-100: 40, 146, 204;
210+
--color-primary-200: 41, 154, 214;
211+
--color-primary-300: 75, 170, 221;
212+
--color-primary-400: 109, 186, 227;
213+
--color-primary-500: 144, 202, 234;
214+
--color-primary-600: 169, 214, 239;
215+
--color-primary-700: 199, 229, 244;
216+
--color-primary-800: 216, 237, 248;
217+
--color-primary-900: 229, 243, 250;
218+
200219
--color-background-100: 25, 25, 25; /* primary bg */
201220
--color-background-90: 32, 32, 32; /* secondary bg */
202221
--color-background-80: 44, 44, 44; /* tertiary bg */
@@ -286,25 +305,6 @@
286305
[data-theme="dark"],
287306
[data-theme="light-contrast"],
288307
[data-theme="dark-contrast"] {
289-
--color-primary-10: 236, 241, 255;
290-
--color-primary-20: 217, 228, 255;
291-
--color-primary-30: 197, 214, 255;
292-
--color-primary-40: 178, 200, 255;
293-
--color-primary-50: 159, 187, 255;
294-
--color-primary-60: 140, 173, 255;
295-
--color-primary-70: 121, 159, 255;
296-
--color-primary-80: 101, 145, 255;
297-
--color-primary-90: 82, 132, 255;
298-
--color-primary-100: 63, 118, 255;
299-
--color-primary-200: 57, 106, 230;
300-
--color-primary-300: 50, 94, 204;
301-
--color-primary-400: 44, 83, 179;
302-
--color-primary-500: 38, 71, 153;
303-
--color-primary-600: 32, 59, 128;
304-
--color-primary-700: 25, 47, 102;
305-
--color-primary-800: 19, 35, 76;
306-
--color-primary-900: 13, 24, 51;
307-
308308
--color-sidebar-background-100: var(--color-background-100); /* primary sidebar bg */
309309
--color-sidebar-background-90: var(--color-background-90); /* secondary sidebar bg */
310310
--color-sidebar-background-80: var(--color-background-80); /* tertiary sidebar bg */

0 commit comments

Comments
 (0)