-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
99183d8
commit 2607660
Showing
41 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+244 KB
frontend/memoree_client/fonts/Montserrat/Montserrat-ExtraBoldItalic.ttf
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+240 KB
frontend/memoree_client/fonts/Montserrat/Montserrat-ExtraLightItalic.ttf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+243 KB
frontend/memoree_client/fonts/Montserrat/Montserrat-SemiBoldItalic.ttf
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file not shown.
Binary file added
BIN
+93.2 KB
frontend/memoree_client/fonts/ProductSans/ProductSans-BlackItalic.ttf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+93.8 KB
frontend/memoree_client/fonts/ProductSans/ProductSans-LightItalic.ttf
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+93.4 KB
frontend/memoree_client/fonts/ProductSans/ProductSans-MediumItalic.ttf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/env/python3 | ||
|
||
import sys | ||
import sh | ||
|
||
folder = sys.argv[1] | ||
files = sh.ls("-1", folder, _iter=True) | ||
weight_mapping = { | ||
'Thin': 100, | ||
'ExtraLight': 200, | ||
'Light': 300, | ||
'Medium': 500, | ||
'SemiBold': 600, | ||
'Bold': 700, | ||
'ExtraBold': 800, | ||
'Black': 900, | ||
} | ||
|
||
for file in files: | ||
file = str(file[:-1]) | ||
print("- asset: fonts/" + folder + "/" + file) | ||
for key, value in weight_mapping.items(): | ||
if key in file: | ||
print(" weight:", value) | ||
break | ||
if "Italic" in file: | ||
print(" style: italic") |