Skip to content

Commit 18f7628

Browse files
committed
theme tweek
1 parent b1fe3d2 commit 18f7628

File tree

3 files changed

+16
-14
lines changed

3 files changed

+16
-14
lines changed

src/components/experienceCard/ExperienceCard.js

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,19 @@ class ExperienceCard extends Component {
2222
<div className="experience-card-heading-left">
2323
<h3
2424
className="experience-card-title"
25-
style={{ color: theme.expTxtColor }}
25+
style={{ color: theme.text }}
2626
>
2727
{experience["title"]}
2828
</h3>
2929
<p
3030
className="experience-card-company"
31-
style={{ color: theme.expTxtColor }}
31+
style={{ color: theme.text }}
3232
>
3333
<a
3434
href={experience["company_url"]}
3535
target="_blank"
3636
rel="noopener noreferrer"
37+
style={{ color: theme.text }}
3738
>
3839
{experience["company"]}
3940
</a>
@@ -42,21 +43,21 @@ class ExperienceCard extends Component {
4243
<div className="experience-card-heading-right">
4344
<p
4445
className="experience-card-duration"
45-
style={{ color: theme.expTxtColor }}
46+
style={{ color: theme.text }}
4647
>
4748
{experience["duration"]}
4849
</p>
4950
<p
5051
className="experience-card-location"
51-
style={{ color: theme.expTxtColor }}
52+
style={{ color: theme.text }}
5253
>
5354
{experience["location"]}
5455
</p>
5556
</div>
5657
</div>
5758
<p
5859
className="experience-card-description"
59-
style={{ color: theme.expTxtColor }}
60+
style={{ color: theme.text }}
6061
>
6162
{experience["description"]}
6263
</p>

src/containers/experienceAccordion/ExperienceAccordion.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ class ExperienceAccordion extends Component {
2424
borderColor: `${theme.headerColor}`,
2525
marginBottom: `3px`,
2626
fontFamily: "Google Sans Regular",
27+
color: `${theme.text}`,
2728
}),
2829
},
2930
Content: {

src/theme.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ export const yellowTheme = {
154154
};
155155

156156
export const materialDarkTheme = {
157-
body: "#1E272C",
157+
body: "#263238",
158158
text: "#aeaeae",
159159
expTxtColor: "#000a12",
160160
highlight: "#4f5b62",
@@ -164,35 +164,35 @@ export const materialDarkTheme = {
164164
compImgHighlight: "#E6E6E6",
165165
jacketColor: "#8eacbb",
166166
headerColor: "#34515e",
167-
splashBg: "#E6E6E6",
167+
splashBg: "#4f5b62",
168168
};
169169

170170
export const materialLightTheme = {
171171
body: "#ffffff",
172172
text: "#4c2b91",
173173
expTxtColor: "#000000",
174174
highlight: "#E9E3F5",
175-
dark: "#E1E2E1",
175+
dark: "#1d0c41",
176176
secondaryText: "#7d56c2",
177-
imageHighlight: "#E1E2E1",
177+
imageHighlight: "#2b1958",
178178
compImgHighlight: "#E1E2E1",
179179
jacketColor: "#E1E2E1",
180180
headerColor: "#E1E2E1",
181-
splashBg: "#E1E2E1",
181+
splashBg: "#7d56c2",
182182
};
183183

184184
export const materialTealTheme = {
185185
body: "#ffffff",
186186
text: "#05505E",
187187
expTxtColor: "#000000",
188188
highlight: "#a1dded",
189-
dark: "#E1E2E1",
189+
dark: "#07292c",
190190
secondaryText: "#05505E",
191-
imageHighlight: "#E1E2E1",
191+
imageHighlight: "#0a343c",
192192
compImgHighlight: "#E1E2E1",
193193
jacketColor: "#E1E2E1",
194194
headerColor: "#E1E2E1",
195-
splashBg: "#E1E2E1",
195+
splashBg: "#05505E",
196196
};
197197

198-
export const chosenTheme = blueTheme;
198+
export const chosenTheme = materialDarkTheme;

0 commit comments

Comments
 (0)