Skip to content

Commit 2706dee

Browse files
authored
Merge pull request #403 from lightninglabs/connect-updates
2 parents 682f9bf + 4ce0b87 commit 2706dee

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

app/src/components/connect/SessionRow.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const ROW_HEIGHT = 60;
1616

1717
const Styled = {
1818
Row: styled(Row)`
19-
border-bottom: 0.5px solid ${props => props.theme.colors.darkGray};
19+
border-bottom: 0.5px solid ${props => props.theme.colors.lightBlue};
2020
2121
&:last-child {
2222
border-bottom-width: 0;
@@ -47,7 +47,7 @@ const Styled = {
4747
}
4848
`,
4949
CloseIcon: styled(Close)`
50-
color: ${props => props.theme.colors.pink};
50+
color: ${props => props.theme.colors.lightningRed};
5151
`,
5252
};
5353

app/src/components/theme.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ const theme: Theme = {
4444
gradient: 'linear-gradient(325.53deg, #252F4A 0%, #46547B 100%);',
4545
lightBlue: '#384770',
4646
paleBlue: '#2E3A5C',
47+
lightningRed: '#EF4444',
4748
},
4849
};
4950

app/src/emotion-theme.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ declare module '@emotion/react' {
4040
gradient: string;
4141
lightBlue: string;
4242
paleBlue: string;
43+
lightningRed: string;
4344
};
4445
}
4546
}

0 commit comments

Comments
 (0)