Skip to content

Commit

Permalink
Merge pull request #3 from edly-io/fix/font-family-plex
Browse files Browse the repository at this point in the history
fix: change font-family to Plex
  • Loading branch information
hinakhadim authored Oct 5, 2023
2 parents 71d0d9e + ee5153e commit 7871a98
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 0 deletions.
28 changes: 28 additions & 0 deletions paragon/_fonts.scss
Original file line number Diff line number Diff line change
@@ -1 +1,29 @@
// Add any font imports or definitions here
@font-face {
font-family: 'Plex';
src: url('./fonts/IBMPlexSansArabic-Bold.ttf') format('truetype');
font-weight: 700;
font-style: normal;
}

@font-face {
font-family: 'Plex';
src: url('./fonts/IBMPlexSansArabic-SemiBold.ttf') format('truetype');
font-weight: 600;
font-style: normal;
}

@font-face {
font-family: 'Plex';
src: url('./fonts/IBMPlexSansArabic-Medium.ttf') format('truetype');
font-weight: 500;
font-style: normal;
}


@font-face {
font-family: 'Plex';
src: url('./fonts/IBMPlexSansArabic-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
10 changes: 10 additions & 0 deletions paragon/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,13 @@ $yiq-text-dark: $gray-700 !default;
$body-bg: $white !default;

$headings-color: $gray-700 !default;


// stylelint-disable value-keyword-case
$font-family-sans-serif: Plex, -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
$font-family-serif: Plex, serif !default;
$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
"Courier New", monospace !default;
$font-family-base: $font-family-sans-serif !default;
Binary file added paragon/fonts/IBMPlexSansArabic-Bold.ttf
Binary file not shown.
Binary file added paragon/fonts/IBMPlexSansArabic-Medium.ttf
Binary file not shown.
Binary file added paragon/fonts/IBMPlexSansArabic-Regular.ttf
Binary file not shown.
Binary file added paragon/fonts/IBMPlexSansArabic-SemiBold.ttf
Binary file not shown.

0 comments on commit 7871a98

Please sign in to comment.