Skip to content

Commit

Permalink
feat(foundation): add font-face definitions (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrm1st3r authored Aug 9, 2024
1 parent 3953dbc commit 46ec2a2
Show file tree
Hide file tree
Showing 2 changed files with 152 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/honest-moles-raise.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@holisticon/atomic-playfulness-foundation": minor
---

Add font-face definitions for ES Klarheit fonts
147 changes: 147 additions & 0 deletions packages/foundation/es-klarheit.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,147 @@
/* ES Klarheit Kurrent */

@font-face {
font-family: "ES Klarheit Kurrent";
font-weight: 400;
src: url("https://atomic-playfulness.holisticon.de/fonts/ESKlarheitKurrent-Rg.woff2")
format("woff2");
font-style: normal;
font-display: swap;
}

@font-face {
font-family: "ES Klarheit Kurrent";
font-weight: 400;
src: url("https://atomic-playfulness.holisticon.de/fonts/ESKlarheitKurrent-It.woff2")
format("woff2");
font-style: italic;
font-display: swap;
}

@font-face {
font-family: "ES Klarheit Kurrent";
font-weight: 500;
src: url("https://atomic-playfulness.holisticon.de/fonts/ESKlarheitKurrent-Md.woff2")
format("woff2");
font-style: normal;
font-display: swap;
}

@font-face {
font-family: "ES Klarheit Kurrent";
font-weight: 500;
src: url("https://atomic-playfulness.holisticon.de/fonts/ESKlarheitKurrent-MdIt.woff2")
format("woff2");
font-style: italic;
font-display: swap;
}

@font-face {
font-family: "ES Klarheit Kurrent";
font-weight: 600;
src: url("https://atomic-playfulness.holisticon.de/fonts/ESKlarheitKurrent-Smbd.woff2")
format("woff2");
font-style: normal;
font-display: swap;
}

@font-face {
font-family: "ES Klarheit Kurrent";
font-weight: 600;
src: url("https://atomic-playfulness.holisticon.de/fonts/ESKlarheitKurrent-SmbdIt.woff2")
format("woff2");
font-style: italic;
font-display: swap;
}

@font-face {
font-family: "ES Klarheit Kurrent";
font-weight: 700;
src: url("https://atomic-playfulness.holisticon.de/fonts/ESKlarheitKurrent-Bd.woff2")
format("woff2");
font-style: normal;
font-display: swap;
}

@font-face {
font-family: "ES Klarheit Kurrent";
font-weight: 700;
src: url("https://atomic-playfulness.holisticon.de/fonts/ESKlarheitKurrent-BdIt.woff2")
format("woff2");
font-style: italic;
font-display: swap;
}

/* ES Klarheit Grotesk */

@font-face {
font-family: "ES Klarheit Grotesk";
font-weight: 400;
src: url("https://atomic-playfulness.holisticon.de/fonts/ESKlarheitGrotesk-Rg.woff2")
format("woff2");
font-style: normal;
font-display: swap;
}

@font-face {
font-family: "ES Klarheit Grotesk";
font-weight: 400;
src: url("https://atomic-playfulness.holisticon.de/fonts/ESKlarheitGrotesk-It.woff2")
format("woff2");
font-style: italic;
font-display: swap;
}

@font-face {
font-family: "ES Klarheit Grotesk";
font-weight: 500;
src: url("https://atomic-playfulness.holisticon.de/fonts/ESKlarheitGrotesk-Md.woff2")
format("woff2");
font-style: normal;
font-display: swap;
}

@font-face {
font-family: "ES Klarheit Grotesk";
font-weight: 500;
src: url("https://atomic-playfulness.holisticon.de/fonts/ESKlarheitGrotesk-MdIt.woff2")
format("woff2");
font-style: italic;
font-display: swap;
}

@font-face {
font-family: "ES Klarheit Grotesk";
font-weight: 600;
src: url("https://atomic-playfulness.holisticon.de/fonts/ESKlarheitGrotesk-Smbd.woff2")
format("woff2");
font-style: normal;
font-display: swap;
}

@font-face {
font-family: "ES Klarheit Grotesk";
font-weight: 600;
src: url("https://atomic-playfulness.holisticon.de/fonts/ESKlarheitGrotesk-SmbdIt.woff2")
format("woff2");
font-style: italic;
font-display: swap;
}

@font-face {
font-family: "ES Klarheit Grotesk";
font-weight: 700;
src: url("https://atomic-playfulness.holisticon.de/fonts/ESKlarheitGrotesk-Bd.woff2")
format("woff2");
font-style: normal;
font-display: swap;
}

@font-face {
font-family: "ES Klarheit Grotesk";
font-weight: 700;
src: url("https://atomic-playfulness.holisticon.de/fonts/ESKlarheitGrotesk-BdIt.woff2")
format("woff2");
font-style: italic;
font-display: swap;
}

0 comments on commit 46ec2a2

Please sign in to comment.