Skip to content

Commit

Permalink
Fixed #46 - Update fonts
Browse files Browse the repository at this point in the history
  • Loading branch information
cagataycivici committed Sep 21, 2023
1 parent d8bc5e4 commit 7a91288
Show file tree
Hide file tree
Showing 53 changed files with 186 additions and 24 deletions.
3 changes: 2 additions & 1 deletion themes/arya/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -829,6 +829,8 @@ $imagePreviewActionIconFontSize:1.5rem !default;
$imagePreviewActionIconBorderRadius:50% !default;

:root {
font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
--font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
--surface-a:#{$shade800};
--surface-b:#{$shade900};
--surface-c:#{$hoverBg};
Expand All @@ -839,7 +841,6 @@ $imagePreviewActionIconBorderRadius:50% !default;
--text-color-secondary:#{$shade100};
--primary-color:#{$primaryColor};
--primary-color-text:#{$primaryTextColor};
--font-family:#{$fontFamily};
--surface-0: #121212;
--surface-50: #2a2a2a;
--surface-100: #414141;
Expand Down
3 changes: 2 additions & 1 deletion themes/bootstrap4/bootstrap4-dark/_variables_dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -831,6 +831,8 @@ $imagePreviewActionIconFontSize:1.5rem !default;
$imagePreviewActionIconBorderRadius:50% !default;

:root {
font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
--font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
--surface-a:#{$shade800};
--surface-b:#{$shade900};
--surface-c:#{$hoverBg};
Expand All @@ -841,7 +843,6 @@ $imagePreviewActionIconBorderRadius:50% !default;
--text-color-secondary:#{$shade100};
--primary-color:#{$primaryColor};
--primary-color-text:#{$primaryTextColor};
--font-family:#{$fontFamily};
--surface-0: #20262e;
--surface-50: #363c43;
--surface-100: #4d5158;
Expand Down
3 changes: 2 additions & 1 deletion themes/bootstrap4/bootstrap4-light/_variables_light.scss
Original file line number Diff line number Diff line change
Expand Up @@ -831,6 +831,8 @@ $imagePreviewActionIconFontSize:1.5rem !default;
$imagePreviewActionIconBorderRadius:50% !default;

:root {
font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
--font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
--surface-a:#{$shade000};
--surface-b:#{$shade100};
--surface-c:#{$shade200};
Expand All @@ -841,7 +843,6 @@ $imagePreviewActionIconBorderRadius:50% !default;
--text-color-secondary:#{$shade600};
--primary-color:#{$primaryColor};
--primary-color-text:#{$primaryTextColor};
--font-family:#{$fontFamily};
--surface-0: #ffffff;
--surface-50: #f9fafb;
--surface-100: #f8f9fa;
Expand Down
3 changes: 2 additions & 1 deletion themes/fluent/fluent-light/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -850,6 +850,8 @@ $imagePreviewActionIconFontSize:1.5rem !default;
$imagePreviewActionIconBorderRadius:50% !default;

:root {
font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
--font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
--surface-a:#{$white};
--surface-b:#{$neutralLighterAlt};
--surface-c:#{$neutralLighter};
Expand All @@ -860,7 +862,6 @@ $imagePreviewActionIconBorderRadius:50% !default;
--text-color-secondary:#{$neutralSecondary};
--primary-color:#{$themePrimary};
--primary-color-text:#{$white};
--font-family:#{$fontFamily};
--surface-0: #ffffff;
--surface-50: #f3f2f1;
--surface-100: #e1dfdd;
Expand Down
7 changes: 5 additions & 2 deletions themes/lara/lara-dark/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ $shade900:#040d19 !default; //ground surface
$hoverBg:rgba(255,255,255,.03) !default;

//global
$fontFamily:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
$fontFamily:'Inter var', sans-serif !default;
$fontSize:1rem !default;
$fontWeight:normal !default;
$textColor:$shade000 !default;
Expand Down Expand Up @@ -830,6 +830,10 @@ $imagePreviewActionIconFontSize:1.5rem !default;
$imagePreviewActionIconBorderRadius:50% !default;

:root {
font-family:'Inter var', sans-serif;
font-feature-settings: "cv02","cv03","cv04","cv11";
font-variation-settings: normal;
--font-family:'Inter var', sans-serif;
--surface-a:#{$shade800};
--surface-b:#{$shade900};
--surface-c:#{$hoverBg};
Expand All @@ -840,7 +844,6 @@ $imagePreviewActionIconBorderRadius:50% !default;
--text-color-secondary:#{$shade100};
--primary-color:#{$primaryColor};
--primary-color-text:#{$primaryTextColor};
--font-family:#{$fontFamily};
--surface-0: #040d19;
--surface-50: #1d2530;
--surface-100: #363d47;
Expand Down
16 changes: 16 additions & 0 deletions themes/lara/lara-dark/blue/_fonts.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
@font-face {
font-family: 'Inter var';
font-weight: 100 900;
font-display: swap;
font-style: normal;
font-named-instance: 'Regular';
src: url("./fonts/Inter-roman.var.woff2?v=3.19") format("woff2");
}
@font-face {
font-family: 'Inter var';
font-weight: 100 900;
font-display: swap;
font-style: italic;
font-named-instance: 'Italic';
src: url("./fonts/Inter-italic.var.woff2?v=3.19") format("woff2");
}
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions themes/lara/lara-dark/blue/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ $highlightTextColor: rgba(255,255,255,.87) !default;
$highlightFocusBg: rgba($primaryColor, .24) !default;

@import '../_variables';
@import './_fonts';
@import '../../../../theme-base/_components';
@import '../_extensions';
16 changes: 16 additions & 0 deletions themes/lara/lara-dark/indigo/_fonts.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
@font-face {
font-family: 'Inter var';
font-weight: 100 900;
font-display: swap;
font-style: normal;
font-named-instance: 'Regular';
src: url("./fonts/Inter-roman.var.woff2?v=3.19") format("woff2");
}
@font-face {
font-family: 'Inter var';
font-weight: 100 900;
font-display: swap;
font-style: italic;
font-named-instance: 'Italic';
src: url("./fonts/Inter-italic.var.woff2?v=3.19") format("woff2");
}
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions themes/lara/lara-dark/indigo/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ $highlightTextColor: rgba(255,255,255,.87) !default;
$highlightFocusBg: rgba($primaryColor, .24) !default;

@import '../_variables';
@import './_fonts';
@import '../../../../theme-base/_components';
@import '../_extensions';
16 changes: 16 additions & 0 deletions themes/lara/lara-dark/purple/_fonts.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
@font-face {
font-family: 'Inter var';
font-weight: 100 900;
font-display: swap;
font-style: normal;
font-named-instance: 'Regular';
src: url("./fonts/Inter-roman.var.woff2?v=3.19") format("woff2");
}
@font-face {
font-family: 'Inter var';
font-weight: 100 900;
font-display: swap;
font-style: italic;
font-named-instance: 'Italic';
src: url("./fonts/Inter-italic.var.woff2?v=3.19") format("woff2");
}
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions themes/lara/lara-dark/purple/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ $highlightTextColor: rgba(255,255,255,.87) !default;
$highlightFocusBg: rgba($primaryColor, .24) !default;

@import '../_variables';
@import './_fonts';
@import '../../../../theme-base/_components';
@import '../_extensions';
16 changes: 16 additions & 0 deletions themes/lara/lara-dark/teal/_fonts.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
@font-face {
font-family: 'Inter var';
font-weight: 100 900;
font-display: swap;
font-style: normal;
font-named-instance: 'Regular';
src: url("./fonts/Inter-roman.var.woff2?v=3.19") format("woff2");
}
@font-face {
font-family: 'Inter var';
font-weight: 100 900;
font-display: swap;
font-style: italic;
font-named-instance: 'Italic';
src: url("./fonts/Inter-italic.var.woff2?v=3.19") format("woff2");
}
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions themes/lara/lara-dark/teal/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ $highlightTextColor: rgba(255,255,255,.87) !default;
$highlightFocusBg: rgba($primaryColor, .24) !default;

@import '../_variables';
@import './_fonts';
@import '../../../../theme-base/_components';
@import '../_extensions';
7 changes: 5 additions & 2 deletions themes/lara/lara-light/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ $shade800:#343a40 !default; //unused
$shade900:#212529 !default; //unused

//global
$fontFamily:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
$fontFamily:'Inter var', sans-serif !default;
$fontSize:1rem !default;
$fontWeight:normal !default;
$textColor:$shade700 !default;
Expand Down Expand Up @@ -832,6 +832,10 @@ $imagePreviewActionIconFontSize:1.5rem !default;
$imagePreviewActionIconBorderRadius:50% !default;

:root {
font-family:'Inter var', sans-serif;
font-feature-settings: "cv02","cv03","cv04","cv11";
font-variation-settings: normal;
--font-family:'Inter var', sans-serif;
--surface-a:#{$shade000};
--surface-b:#{$shade100};
--surface-c:#{$shade200};
Expand All @@ -842,7 +846,6 @@ $imagePreviewActionIconBorderRadius:50% !default;
--text-color-secondary:#{$shade600};
--primary-color:#{$primaryColor};
--primary-color-text:#{$primaryTextColor};
--font-family:#{$fontFamily};
--surface-0: #ffffff;
--surface-50: #FAFAFA;
--surface-100: #F5F5F5;
Expand Down
16 changes: 16 additions & 0 deletions themes/lara/lara-light/blue/_fonts.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
@font-face {
font-family: 'Inter var';
font-weight: 100 900;
font-display: swap;
font-style: normal;
font-named-instance: 'Regular';
src: url("./fonts/Inter-roman.var.woff2?v=3.19") format("woff2");
}
@font-face {
font-family: 'Inter var';
font-weight: 100 900;
font-display: swap;
font-style: italic;
font-named-instance: 'Italic';
src: url("./fonts/Inter-italic.var.woff2?v=3.19") format("woff2");
}
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions themes/lara/lara-light/blue/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ $highlightTextColor: $primaryDarkerColor !default;
$highlightFocusBg: rgba($primaryColor, .24) !default;

@import '../_variables';
@import './_fonts';
@import '../../../../theme-base/_components';
@import '../_extensions';
16 changes: 16 additions & 0 deletions themes/lara/lara-light/indigo/_fonts.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
@font-face {
font-family: 'Inter var';
font-weight: 100 900;
font-display: swap;
font-style: normal;
font-named-instance: 'Regular';
src: url("./fonts/Inter-roman.var.woff2?v=3.19") format("woff2");
}
@font-face {
font-family: 'Inter var';
font-weight: 100 900;
font-display: swap;
font-style: italic;
font-named-instance: 'Italic';
src: url("./fonts/Inter-italic.var.woff2?v=3.19") format("woff2");
}
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions themes/lara/lara-light/indigo/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ $highlightTextColor: $primaryDarkerColor !default;
$highlightFocusBg: #E0E7FF !default;

@import '../_variables';
@import './_fonts';
@import '../../../../theme-base/_components';
@import '../_extensions';
16 changes: 16 additions & 0 deletions themes/lara/lara-light/purple/_fonts.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
@font-face {
font-family: 'Inter var';
font-weight: 100 900;
font-display: swap;
font-style: normal;
font-named-instance: 'Regular';
src: url("./fonts/Inter-roman.var.woff2?v=3.19") format("woff2");
}
@font-face {
font-family: 'Inter var';
font-weight: 100 900;
font-display: swap;
font-style: italic;
font-named-instance: 'Italic';
src: url("./fonts/Inter-italic.var.woff2?v=3.19") format("woff2");
}
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions themes/lara/lara-light/purple/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ $highlightTextColor: $primaryDarkerColor !default;
$highlightFocusBg: rgba($primaryColor, .24) !default;

@import '../_variables';
@import './_fonts';
@import '../../../../theme-base/_components';
@import '../_extensions';
16 changes: 16 additions & 0 deletions themes/lara/lara-light/teal/_fonts.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
@font-face {
font-family: 'Inter var';
font-weight: 100 900;
font-display: swap;
font-style: normal;
font-named-instance: 'Regular';
src: url("./fonts/Inter-roman.var.woff2?v=3.19") format("woff2");
}
@font-face {
font-family: 'Inter var';
font-weight: 100 900;
font-display: swap;
font-style: italic;
font-named-instance: 'Italic';
src: url("./fonts/Inter-italic.var.woff2?v=3.19") format("woff2");
}
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions themes/lara/lara-light/teal/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ $highlightTextColor: $primaryDarkerColor !default;
$highlightFocusBg: rgba($primaryColor, .24) !default;

@import '../_variables';
@import './_fonts';
@import '../../../../theme-base/_components';
@import '../_extensions';
3 changes: 2 additions & 1 deletion themes/luna/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -820,6 +820,8 @@ $imagePreviewActionIconFontSize:1.5rem !default;
$imagePreviewActionIconBorderRadius:50% !default;

:root {
font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
--font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
--surface-a: #191919;
--surface-b: #191919;
--surface-c: #4c4c4c;
Expand All @@ -830,7 +832,6 @@ $imagePreviewActionIconBorderRadius:50% !default;
--text-color-secondary: #888888;
--primary-color: #{$primaryColor};
--primary-color-text: #{$primaryTextColor};
--font-family: #{$fontFamily};
--surface-0: #191919;
--surface-50: #303030;
--surface-100: #474747;
Expand Down
5 changes: 3 additions & 2 deletions themes/material/material-dark/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ $emphasis-lower:rgba(255,255,255,.12) !default;
$overlayColor:#ffffff !default;

//global
$fontFamily:Roboto,Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif !default;
$fontFamily:Roboto,'Helvetica Neue Light','Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif !default;
$fontSize:1rem !default;
$fontWeight:normal !default;
$textColor:$emphasis-high !default;
Expand Down Expand Up @@ -829,6 +829,8 @@ $imagePreviewActionIconBorderRadius:50% !default;


:root {
font-family:Roboto,'Helvetica Neue Light','Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif;
--font-family:Roboto,'Helvetica Neue Light','Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif;
--surface-a:#1e1e1e;
--surface-b:#121212;
--surface-c:hsla(0,0%,100%,.04);
Expand All @@ -839,7 +841,6 @@ $imagePreviewActionIconBorderRadius:50% !default;
--text-color-secondary:#{$textSecondaryColor};
--primary-color:#{$primaryColor};
--primary-color-text:#{$primaryTextColor};
--font-family:#{$fontFamily};
--surface-0: #121212;
--surface-50: #2a2a2a;
--surface-100: #414141;
Expand Down
5 changes: 3 additions & 2 deletions themes/material/material-light/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ $emphasis-lower:rgba(0,0,0,.12) !default;
$overlayColor:#000000 !default;

//global
$fontFamily:Roboto,Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif !default;
$fontFamily:Roboto,'Helvetica Neue Light','Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif !default;
$fontSize:1rem !default;
$fontWeight:normal !default;
$textColor:$emphasis-high !default;
Expand Down Expand Up @@ -828,6 +828,8 @@ $imagePreviewActionIconFontSize:1.5rem !default;
$imagePreviewActionIconBorderRadius:50% !default;

:root {
font-family:Roboto,'Helvetica Neue Light','Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif;
--font-family:Roboto,'Helvetica Neue Light','Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif;
--surface-a:#ffffff;
--surface-b:#fafafa;
--surface-c:rgba(0,0,0,.04);
Expand All @@ -838,7 +840,6 @@ $imagePreviewActionIconBorderRadius:50% !default;
--text-color-secondary:#{$textSecondaryColor};
--primary-color:#{$primaryColor};
--primary-color-text:#{$primaryTextColor};
--font-family:#{$fontFamily};
--surface-0: #ffffff;
--surface-50: #FAFAFA;
--surface-100: #F5F5F5;
Expand Down
Loading

0 comments on commit 7a91288

Please sign in to comment.