Skip to content

Commit ceb9899

Browse files
committed
Update theme.ts and _post.elements.js
1 parent b50e254 commit ceb9899

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/common/src/theme/theme.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const theme = {
1414
primaryText: '#7F694C',
1515
lightText: '#F2F2F2',
1616
secondary: '#40A9F3',
17-
shySecondary: '#E3FF73',
17+
shySecondary: '#66b9f4',
1818
darkBlue: '#1081D0',
1919
white: '#E0E0E0',
2020
gray: '#C0C0C0',

packages/homepage/src/templates/_post.elements.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import styled, { css } from 'styled-components';
22

33
export const PostContainer = styled.div`
4-
${({ theme }) => css`
4+
${() => css`
55
color: ${props => props.theme.homepage.white};
66
font-size: 17px;
77
font-weight: 300;
@@ -116,15 +116,15 @@ export const PostContainer = styled.div`
116116
}
117117
118118
a {
119-
color: ${theme.shySecondary};
119+
color: #e3ff73;
120120
text-decoration: none;
121121
border-bottom: 1px solid rgba(255, 255, 255, 0);
122122
transition: all 100ms ease-in 0s;
123123
}
124124
125125
a:hover {
126126
border-bottom: 1px solid;
127-
border-color: ${theme.shySecondary};
127+
border-color: #e3ff73;
128128
}
129129
130130
font-weight: 400;

0 commit comments

Comments
 (0)