diff --git a/src/components/icons/PointerIcon.tsx b/src/components/icons/PointerIcon.tsx index 4c66b6b..bb4910c 100755 --- a/src/components/icons/PointerIcon.tsx +++ b/src/components/icons/PointerIcon.tsx @@ -16,10 +16,10 @@ export interface PointerIconProps { } const defaultColors: PointerIconColors = { - online: 'red', - active: 'black', - inactive: 'gray', - unknown: 'gray', + online: '#C32828', + active: 'white', + inactive: '#A7A7A7', + unknown: '#7B7B7B', } const defaultProps: PointerIconProps = { diff --git a/src/components/icons/WellIcon.tsx b/src/components/icons/WellIcon.tsx index 996ed35..a0f66a2 100755 --- a/src/components/icons/WellIcon.tsx +++ b/src/components/icons/WellIcon.tsx @@ -16,10 +16,10 @@ export type WellIconProps = React.SVGProps & { } const defaultColors: WellIconColors = { - online: 'red', - active: 'black', - inactive: 'gray', - unknown: 'gray', + online: '#C32828', + active: 'white', + inactive: '#A7A7A7', + unknown: '#7B7B7B', } const defaultProps: WellIconProps = { @@ -34,7 +34,7 @@ export const WellIcon = React.memo(({ width, height, state, online, colors, ...o return ( - - - - - - - {online && ( // Полоски, показывающие наличие свежей телеметрии - + + + + + {online || ( // Полоски, показывающие наличие свежей телеметрии +