Skip to content

Commit

Permalink
#18 updating about page colors
Browse files Browse the repository at this point in the history
  • Loading branch information
samgildea committed May 7, 2021
1 parent fbe7eca commit ef97e4e
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 6 deletions.
25 changes: 23 additions & 2 deletions src/components/about/about-style.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,12 @@ export const IconPlaceholder = styled.div`

export const AboutHeaderText = styled.div`
padding-top: 89px;
color: ${colors.ocean900};
`

export const MissionSection = styled.div`
color: ${colors.ocean900};
@media (min-width: ${dimensions.maxwidthTablet}px) {
display: flex;
}
Expand All @@ -39,6 +42,8 @@ export const MissionImage = styled.div`
`

export const MissionText = styled.div`
color: ${colors.ocean900};
position: relative;
padding-top: 28px;
@media (min-width: ${dimensions.maxwidthTablet}px) {
Expand All @@ -51,6 +56,7 @@ export const MissionText = styled.div`

export const MissionTextParagraph = styled.div`
width: 44vw;
color: ${colors.ocean900};
@media (max-width: ${dimensions.maxwidthTablet}px) {
width: 100%;
Expand All @@ -61,6 +67,7 @@ export const IndustryContextSection = styled.div`
display: flex;
justify-content: center;
background-color: white;
color: ${colors.ocean900};
`

export const IndustryContextContainer = styled.div`
Expand All @@ -72,6 +79,7 @@ export const IndustryContextContainer = styled.div`
padding-top: 42px;
padding-left: 109px;
padding-right: 109px;
color: ${colors.ocean900};
`

export const IndustryContextExamples = styled.div`
Expand Down Expand Up @@ -113,6 +121,7 @@ export const IndustryContextExampleParagraph = styled.div`
export const ProductBenefitHeader = styled.div`
text-align: center;
margin-top: 158px;
color: ${colors.ocean900};
@media (max-width: ${dimensions.maxwidthTablet}px) {
margin-top: 54px;
Expand All @@ -123,6 +132,8 @@ export const ProductBenefitsContainer = styled.div`
margin-top: 68px;
display: flex;
flex-wrap: wrap;
color: ${colors.ocean900};
justify-content: space-between;
@media (max-width: ${dimensions.maxwidthTablet}px) {
Expand Down Expand Up @@ -154,11 +165,12 @@ export const BenefitTitle = styled.div`
export const ComparisonCTA = styled.div`
margin-top: 90px;
margin-bottom: 114px;
color: ${colors.ocean900};
display: flex;
justify-content: center;
a {
background-color: ${colors.orange900};
background-color: ${colors.seafoam900};
text-transform: uppercase;
color: ${colors.white900};
padding-left: 48px;
Expand All @@ -179,6 +191,8 @@ export const CompanyComparisonSection = styled.div`
padding-top: 148px;
width: 100vw;
margin-top: 141px;
color: ${colors.ocean900};
display: flex;
margin-left: -${layoutPaddingDesktop};
justify-content: center;
Expand Down Expand Up @@ -210,6 +224,7 @@ export const CompanyComparisonSectionHeading = styled.div`
text-align: center;
font-size: calc(36px + (36 - 24) * ((100vw - 300px) / (1440 - 300)));
font-weight: bold;
color: ${colors.ocean900};
`

export const ProductComparison = styled.div`
Expand All @@ -219,11 +234,14 @@ export const ProductComparison = styled.div`

export const FeatureTitleColumn = styled.div`
// margin-top: 110px;
color: ${colors.ocean900};
`

export const FeatureTitle = styled.div`
font-size: 28px;
margin-bottom: 25px;
color: ${colors.ocean900};
margin-top: 25px;
margin-right: 16px;
font-weight: bold;
Expand All @@ -248,7 +266,7 @@ export const CompetitorName = styled.div`
text-align: center;
padding-bottom: 68px;
color: ${colors.black900};
color: ${colors.ocean900};
display: flex;
justify-content: center;
Expand Down Expand Up @@ -286,6 +304,7 @@ export const GeneralDescriptionSection = styled.div`
width: 46vw;
margin-left: auto;
margin-right: auto;
color: ${colors.ocean900};
@media (max-width: ${dimensions.maxwidthTablet}px) {
width: 100%;
Expand All @@ -294,6 +313,7 @@ export const GeneralDescriptionSection = styled.div`

export const CompanyBackgroundHeading = styled.div`
text-align: center;
color: ${colors.ocean900};
@media (max-width: ${dimensions.maxwidthTablet}px) {
padding-bottom: 30px;
Expand All @@ -305,6 +325,7 @@ export const CompanyTeamSection = styled.div`
width: 65vw;
margin-left: auto;
margin-right: auto;
color: ${colors.ocean900};
@media (max-width: ${dimensions.maxwidthTablet}px) {
width: 100%;
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
4 changes: 2 additions & 2 deletions src/vectors/CheckIcon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit ef97e4e

Please sign in to comment.