Skip to content

Commit 2881073

Browse files
committed
fix colors
1 parent 822e80f commit 2881073

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

theme/components/Popover.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ const baseStyleContent = defineStyle((props) => {
2121
const shadowColor = mode('blackAlpha.200', 'whiteAlpha.300')(props);
2222

2323
return {
24-
[$popperBg.variable]: `#252526`,
25-
background: '#252526',
24+
[$popperBg.variable]: `#1a1a1a`,
25+
background: '#1a1a1a',
2626
[$arrowBg.variable]: $popperBg.reference,
2727
[$arrowShadowColor.variable]: `colors.${ shadowColor }`,
2828
_dark: {
29-
background: '#252526',
29+
background: '#1a1a1a',
3030
[$popperBg.variable]: `grey.50`,
3131
[$arrowShadowColor.variable]: `grey.50`,
3232
boxShadow: 'dark-lg',

theme/components/Tag/Tag.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ const variants = {
4343
}),
4444
select: definePartsStyle((props) => ({
4545
container: {
46-
bg: mode('gray.100', 'gray.800')(props),
47-
color: mode('gray.500', 'whiteAlpha.800')(props),
46+
bg: mode('gray.100', 'grey.10')(props),
47+
color: mode('gray.500', 'white')(props),
4848
cursor: 'pointer',
4949
_hover: {
5050
color: 'blue.400',
@@ -54,8 +54,8 @@ const variants = {
5454
&[data-selected=true],
5555
&[data-selected=true][aria-selected=true]
5656
`]: {
57-
bg: mode('blue.500', 'blue.900')(props),
58-
color: 'whiteAlpha.800',
57+
bg: mode('blue.500', 'grey.10')(props),
58+
color: 'cyan',
5959
},
6060
},
6161
})),

theme/foundations/colors.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const colors = {
5050
'200': '#E2E8F0',
5151
'300': '#CBD5E0',
5252
'400': '#A0AEC0',
53-
'500': '#718096',
53+
'500': 'rgba(255, 255, 255, 0.50)',
5454
'600': '#4A5568',
5555
'700': '#2D3748',
5656
'800': '#1A202C',

ui/gasTracker/GasTrackerNetworkUtilization.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const GasTrackerNetworkUtilization = ({ percentage, isLoading }: Props) => {
2525
const colors = {
2626
high: 'red.600',
2727
medium: 'orange.600',
28-
low: 'green.600',
28+
low: 'green.500',
2929
};
3030
const color = colors[load];
3131

ui/shared/Utilization/Utilization.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const WIDTH = 50;
1414

1515
const Utilization = ({ className, value, colorScheme = 'green', isLoading }: Props) => {
1616
const valueString = (clamp(value * 100 || 0, 0, 100)).toLocaleString(undefined, { maximumFractionDigits: 2 }) + '%';
17-
const colorGrayScheme = useColorModeValue('gray.500', 'gray.400');
17+
const colorGrayScheme = useColorModeValue('gray.500', 'grey.50');
1818
const color = colorScheme === 'gray' ? colorGrayScheme : 'green.500';
1919

2020
return (

ui/shared/chart/ChartWidget.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const ChartWidget = ({
4848
const ref = useRef<HTMLDivElement>(null);
4949
const { zoomRange, handleZoom, handleZoomReset } = useZoom();
5050

51-
const borderColor = useColorModeValue('gray.200', 'gray.600');
51+
const borderColor = useColorModeValue('gray.200', 'grey.20');
5252

5353
const hasItems = items && items.length > 2;
5454

ui/shared/chart/tooltip/ChartTooltipRow.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ type Props = {
1212
} & ({ label: string; children?: never } | { children: React.ReactNode; label?: never });
1313

1414
const ChartTooltipRow = ({ label, lineNum, children }: Props) => {
15-
const labelColor = useToken('colors', 'blue.100');
15+
const labelColor = useToken('colors', 'orange.600');
1616
const textColor = useToken('colors', 'white');
1717

1818
return (

0 commit comments

Comments
 (0)