Skip to content

Latest commit

 

History

History
119 lines (87 loc) · 2.28 KB

README.md

File metadata and controls

119 lines (87 loc) · 2.28 KB

Logo

License: CC BY-SA 4.0

Assets

Styleguide

Chromatic Palette

colors

Primary Colors

#242A53 
#245B62
#63CB9D

Secondary Colors

#659CC3
#96E452

Typography

Role Font
Highlight Poppins Font
Paragraph IBM Plex Sans

Headings

headers

// css
h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
}
@media screen {
    h1 {
        font-size: 48px;
    }
    h2 {
        font-size: 40px;
    }
    h3 {
        font-size: 32px;
    }
    h4 {
        font-size: 24px;
    }
    h5 {
        font-size: 20px;
    }
}
@media print {
    h1 {
        font-size: 48pt;
    }
    h2 {
        font-size: 40pt;
    }
    h3 {
        font-size: 32pt;
    }
    h4 {
        font-size: 24pt;
    }
    h5 {
        font-size: 20pt;
    }
}

Paragraphs

paragraphs

// css
p {
    font-family: 'IBM Plex Sans', sans-serif;
}
@media screen {
    p {
        font-size: 14px;
    }
}
@media print {
    h1 {
        font-size: 14pt;
    }
}