Skip to content

Commit e97b1d2

Browse files
Merge pull request #35 from autonomys/feat/change-hero-banner-colour
Change hero banner color
2 parents 06b1ebc + 9b43174 commit e97b1d2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

ui/home/HeroBanner.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import SearchBar from 'ui/snippets/searchBar/SearchBar';
77
import UserProfileDesktop from 'ui/snippets/user/profile/UserProfileDesktop';
88
import UserWalletDesktop from 'ui/snippets/user/wallet/UserWalletDesktop';
99

10-
const BACKGROUND_DEFAULT = 'radial-gradient(103.03% 103.03% at 0% 0%, rgba(183, 148, 244, 0.8) 0%, rgba(0, 163, 196, 0.8) 100%), var(--chakra-colors-blue-400)';
10+
const BACKGROUND_DEFAULT = 'radial-gradient(103.03% 103.03% at 0% 0%, rgba(3, 35, 144, 0.8) 0%, rgba(83, 115, 196, 0.8) 100%), var(--chakra-colors-blue-400)';
1111
const TEXT_COLOR_DEFAULT = 'white';
1212
const BORDER_DEFAULT = 'none';
1313

ui/shared/monaco/utils/themes.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export const dark = {
7373

7474
'sideBar.background': '#222',
7575

76-
focusBorder: '#007fd4',
76+
focusBorder: '#1949D2',
7777

7878
// not able to use rgba for standard variables, so we use custom prefix here
7979
'custom.list.hoverBackground': 'rgba(255, 255, 255, 0.08)', // whiteAlpha.200
@@ -82,10 +82,10 @@ export const dark = {
8282
'custom.inputOption.hoverBackground': 'rgba(90, 93, 94, 0.31)',
8383

8484
// don't know the name of this variables in vscode
85-
'custom.fileLink.hoverForeground': '#4299E1', // blue.400
85+
'custom.fileLink.hoverForeground': '#1949D2', // custom blue
8686
'custom.riskWarning.primaryBackground': 'rgba(246, 173, 85, 0.3)', // orange.300
8787
'custom.riskWarning.background': 'rgba(246, 173, 85, 0.1)', // orange.300
88-
'custom.mainContract.header': 'rgba(183, 148, 244, 0.3)', // purple.300
89-
'custom.mainContract.body': 'rgba(214, 188, 250, 0.1)', // purple.200
88+
'custom.mainContract.header': 'rgba(3, 35, 144, 0.3)', // custom blue
89+
'custom.mainContract.body': 'rgba(12, 28, 67, 0.1)', // custom dark blue
9090
} as const,
9191
};

0 commit comments

Comments
 (0)