Skip to content

Commit

Permalink
#37 updating singular product page colors
Browse files Browse the repository at this point in the history
  • Loading branch information
samgildea committed May 7, 2021
1 parent 6238b35 commit 5ffbdd5
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 8 deletions.
12 changes: 6 additions & 6 deletions src/components/singular-product/singular-product-styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const SmallImageContainer = styled.div`
export const TextContainer = styled.div`
padding-left: 67px;
color: ${colors.blue900};
color: ${colors.ocean900};
@media (max-width: ${dimensions.maxwidthTablet}px) {
padding-left: 0px;
Expand Down Expand Up @@ -115,7 +115,7 @@ export const Icon = styled.div`

export const IconHeader = styled.div`
margin-left: ${layoutPaddingDesktop};
color: ${colors.blue900};
color: ${colors.ocean900};
@media (max-width: ${dimensions.maxwidthTablet}px) {
text-align: center;
Expand All @@ -133,7 +133,7 @@ export const IconImage = styled.div`
export const IconCaption = styled.div`
margin-top: 25px;
width: 12vw;
color: ${colors.blue900};
color: ${colors.ocean900};
text-align: center;
@media (max-width: ${dimensions.maxwidthTablet}px) {
Expand All @@ -149,13 +149,13 @@ export const ImageHighlightSection = styled.div`
export const ImageHighlightHeading = styled.div`
padding-top: 147px;
margin-left: 4vw;
color: ${colors.blue900};
color: ${colors.ocean900};
`

export const ImageHighlightGroupContainer = styled.div``

export const ImageHighlightGroup = styled.div`
color: ${colors.blue900};
color: ${colors.ocean900};
&.second-section {
position: absolute;
Expand Down Expand Up @@ -261,7 +261,7 @@ export const ThirdSection = styled.div`

export const FeatureSpecSection = styled.div`
margin-top: 100px;
color: ${colors.blue900};
color: ${colors.ocean900};
`

export const FeatureIcon = styled.div`
Expand Down
13 changes: 11 additions & 2 deletions src/style/colors.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,21 @@ const colors = {
white900: "#FFFFFF",

orange900: "#F27A28",
orange900_transparent: "rgb(242, 106, 33, .07)",
blue900: "#245373",
lightblue900: "#6480A5",
lighterblue900: "#6EA8C0",
softblue900: "#ECF3F7",
gray900: "#585858",
black_overlay: "rgb(0, 0, 0, 0.55)"
black_overlay: "rgb(0, 0, 0, 0.55)",
ocean900: "#00667B",
seafoam900: "#5AC7AC",
solar900: "#FFB729",
grass900: "#B2DD8E",
frost900: "#ECF3F7",
stone900: "#585858",
seafoam900_transparent: "rgb(90, 199, 172, .07)",

}

export default colors
export default colors

0 comments on commit 5ffbdd5

Please sign in to comment.