Skip to content

Commit

Permalink
update color
Browse files Browse the repository at this point in the history
  • Loading branch information
thekingofcity committed Nov 3, 2024
1 parent ba2e906 commit 0396fb4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const GuangdongIntercityRailway = (props: LineStyleComponentProps<GuangdongInter
export interface GuangdongIntercityRailwayAttributes extends LinePathAttributes, AttributesWithColor {}

const defaultGuangdongIntercityRailwayAttributes: GuangdongIntercityRailwayAttributes = {
color: [CityCode.Guangzhou, 'ir', '#425392', MonoColour.white],
color: [CityCode.Guangzhou, 'ir', '#2559a8', MonoColour.white],
};

const guangdongIntercityRailway: LineStyle<GuangdongIntercityRailwayAttributes> = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export interface GuangdongIntercityRailwayLineBadgeAttributes extends Attributes

const defaultGuangdongIntercityRailwayLineBadgeAttributes: GuangdongIntercityRailwayLineBadgeAttributes = {
names: ['广清城际', 'Guangzhou-Qingyuan Intercity'],
color: [CityCode.Guangzhou, 'ir', '#425392', MonoColour.white],
color: [CityCode.Guangzhou, 'ir', '#2559a8', MonoColour.white],
};

const guangdongIntercityRailwayLineBadgeAttrsComponent = (
Expand Down
4 changes: 2 additions & 2 deletions src/components/svgs/stations/guangdong-intercity-railway.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ const GuangdongIntercityRailwayStation = (props: StationComponentProps) => {
return React.useMemo(
() => (
<g id={id} transform={`translate(${x}, ${y})`}>
<circle r={5} stroke="#425392" strokeWidth="1.5" fill="white" />
{interchange && <circle r={2.5} stroke="#425392" strokeWidth="1" fill="white" />}
<circle r={5} stroke="#2559a8" strokeWidth="1.5" fill="white" />
{interchange && <circle r={2.5} stroke="#2559a8" strokeWidth="1" fill="white" />}
{/* Below is an overlay element that has all event hooks but can not be seen. */}
<circle
id={`stn_core_${id}`}
Expand Down

0 comments on commit 0396fb4

Please sign in to comment.