rizzo-css 0.0.39 → 0.0.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. package/README.md +5 -3
  2. package/bin/rizzo-css.js +89 -111
  3. package/dist/fonts/IBMPlexMono/IBMPlexMono-Italic.ttf +0 -0
  4. package/dist/fonts/IBMPlexMono/IBMPlexMono-Regular.ttf +0 -0
  5. package/dist/fonts/IBMPlexMono/OFL.txt +93 -0
  6. package/dist/fonts/IBMPlexSans/IBMPlexSans-Italic-VariableFont_wdth,wght.ttf +0 -0
  7. package/dist/fonts/IBMPlexSans/IBMPlexSans-VariableFont_wdth,wght.ttf +0 -0
  8. package/dist/fonts/IBMPlexSans/OFL.txt +93 -0
  9. package/dist/fonts/IBMPlexSans/README.txt +106 -0
  10. package/dist/fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf +0 -0
  11. package/dist/fonts/Inter/Inter-VariableFont_opsz,wght.ttf +0 -0
  12. package/dist/fonts/Inter/OFL.txt +93 -0
  13. package/dist/fonts/JetBrainsMono/AUTHORS.txt +10 -0
  14. package/dist/fonts/JetBrainsMono/JetBrainsMono-Italic[wght].ttf +0 -0
  15. package/dist/fonts/JetBrainsMono/JetBrainsMono[wght].ttf +0 -0
  16. package/dist/fonts/JetBrainsMono/OFL.txt +93 -0
  17. package/dist/fonts/SourceCodePro/OFL.txt +93 -0
  18. package/dist/fonts/SourceCodePro/README.txt +79 -0
  19. package/dist/fonts/SourceCodePro/SourceCodePro-Italic-VariableFont_wght.ttf +0 -0
  20. package/dist/fonts/SourceCodePro/SourceCodePro-VariableFont_wght.ttf +0 -0
  21. package/dist/fonts/SourceSans3/OFL.txt +93 -0
  22. package/dist/fonts/SourceSans3/README.txt +79 -0
  23. package/dist/fonts/SourceSans3/SourceSans3-Italic-VariableFont_wght.ttf +0 -0
  24. package/dist/fonts/SourceSans3/SourceSans3-VariableFont_wght.ttf +0 -0
  25. package/dist/rizzo.min.css +2 -2
  26. package/package.json +10 -9
  27. package/scaffold/astro/Settings.astro +56 -0
  28. package/scaffold/astro/Tabs.astro +3 -0
  29. package/scaffold/astro/icons/devicons/Bun.astro +35 -0
  30. package/scaffold/astro/icons/devicons/Npm.astro +24 -0
  31. package/scaffold/astro/icons/devicons/Pnpm.astro +24 -0
  32. package/scaffold/astro/icons/devicons/Yarn.astro +23 -0
  33. package/scaffold/{astro-minimal → astro-core}/README-RIZZO.md +1 -1
  34. package/scaffold/astro-core/src/layouts/Layout.astro +33 -0
  35. package/scaffold/config/fonts.ts +51 -0
  36. package/scaffold/svelte/Settings.svelte +155 -1
  37. package/scaffold/svelte/icons/devicons/Bun.svelte +30 -0
  38. package/scaffold/svelte/icons/devicons/Npm.svelte +19 -0
  39. package/scaffold/svelte/icons/devicons/Pnpm.svelte +19 -0
  40. package/scaffold/svelte/icons/devicons/Yarn.svelte +18 -0
  41. package/scaffold/{svelte-minimal → svelte-core}/README-RIZZO.md +1 -1
  42. package/scaffold/vanilla/README-RIZZO.md +2 -2
  43. package/scaffold/vanilla/components/accordion.html +47 -0
  44. package/scaffold/vanilla/components/alert.html +47 -0
  45. package/scaffold/vanilla/components/avatar.html +47 -0
  46. package/scaffold/vanilla/components/badge.html +47 -0
  47. package/scaffold/vanilla/components/breadcrumb.html +47 -0
  48. package/scaffold/vanilla/components/button.html +47 -0
  49. package/scaffold/vanilla/components/cards.html +47 -0
  50. package/scaffold/vanilla/components/copy-to-clipboard.html +47 -0
  51. package/scaffold/vanilla/components/divider.html +47 -0
  52. package/scaffold/vanilla/components/dropdown.html +47 -0
  53. package/scaffold/vanilla/components/forms.html +47 -0
  54. package/scaffold/vanilla/components/icons.html +47 -0
  55. package/scaffold/vanilla/components/index.html +47 -0
  56. package/scaffold/vanilla/components/modal.html +47 -0
  57. package/scaffold/vanilla/components/navbar.html +47 -0
  58. package/scaffold/vanilla/components/pagination.html +47 -0
  59. package/scaffold/vanilla/components/progress-bar.html +47 -0
  60. package/scaffold/vanilla/components/search.html +47 -0
  61. package/scaffold/vanilla/components/settings.html +47 -0
  62. package/scaffold/vanilla/components/spinner.html +47 -0
  63. package/scaffold/vanilla/components/table.html +47 -0
  64. package/scaffold/vanilla/components/tabs.html +47 -0
  65. package/scaffold/vanilla/components/theme-switcher.html +47 -0
  66. package/scaffold/vanilla/components/toast.html +47 -0
  67. package/scaffold/vanilla/components/tooltip.html +47 -0
  68. package/scaffold/vanilla/icons/devicons/Bun.svg +19 -0
  69. package/scaffold/vanilla/icons/devicons/Npm.svg +8 -0
  70. package/scaffold/vanilla/icons/devicons/Pnpm.svg +8 -0
  71. package/scaffold/vanilla/icons/devicons/Yarn.svg +7 -0
  72. package/scaffold/vanilla/index.html +47 -0
  73. package/scaffold/vanilla/js/main.js +20 -0
  74. package/scaffold/astro-minimal/src/layouts/Layout.astro +0 -29
  75. /package/scaffold/{astro-minimal → astro-core}/.env.example +0 -0
  76. /package/scaffold/{astro-minimal → astro-core}/astro.config.mjs +0 -0
  77. /package/scaffold/{astro-minimal → astro-core}/gitignore +0 -0
  78. /package/scaffold/{astro-minimal → astro-core}/package.json +0 -0
  79. /package/scaffold/{astro-minimal → astro-core}/public/.gitkeep +0 -0
  80. /package/scaffold/{astro-minimal → astro-core}/public/favicon.svg +0 -0
  81. /package/scaffold/{astro-minimal → astro-core}/src/pages/index.astro +0 -0
  82. /package/scaffold/{astro-minimal → astro-core}/tsconfig.json +0 -0
  83. /package/scaffold/{svelte-minimal → svelte-core}/.env.example +0 -0
  84. /package/scaffold/{svelte-minimal → svelte-core}/gitignore +0 -0
  85. /package/scaffold/{svelte-minimal → svelte-core}/package.json +0 -0
  86. /package/scaffold/{svelte-minimal → svelte-core}/src/app.d.ts +0 -0
  87. /package/scaffold/{svelte-minimal → svelte-core}/src/app.html +0 -0
  88. /package/scaffold/{svelte-minimal → svelte-core}/src/routes/+layout.svelte +0 -0
  89. /package/scaffold/{svelte-minimal → svelte-core}/src/routes/+page.svelte +0 -0
  90. /package/scaffold/{svelte-minimal → svelte-core}/static/.gitkeep +0 -0
  91. /package/scaffold/{svelte-minimal → svelte-core}/svelte.config.js +0 -0
  92. /package/scaffold/{svelte-minimal → svelte-core}/tsconfig.json +0 -0
@@ -0,0 +1,93 @@
1
+ Copyright © 2017 IBM Corp. with Reserved Font Name "Plex"
2
+
3
+ This Font Software is licensed under the SIL Open Font License, Version 1.1.
4
+ This license is copied below, and is also available with a FAQ at:
5
+ https://openfontlicense.org
6
+
7
+
8
+ -----------------------------------------------------------
9
+ SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
10
+ -----------------------------------------------------------
11
+
12
+ PREAMBLE
13
+ The goals of the Open Font License (OFL) are to stimulate worldwide
14
+ development of collaborative font projects, to support the font creation
15
+ efforts of academic and linguistic communities, and to provide a free and
16
+ open framework in which fonts may be shared and improved in partnership
17
+ with others.
18
+
19
+ The OFL allows the licensed fonts to be used, studied, modified and
20
+ redistributed freely as long as they are not sold by themselves. The
21
+ fonts, including any derivative works, can be bundled, embedded,
22
+ redistributed and/or sold with any software provided that any reserved
23
+ names are not used by derivative works. The fonts and derivatives,
24
+ however, cannot be released under any other type of license. The
25
+ requirement for fonts to remain under this license does not apply
26
+ to any document created using the fonts or their derivatives.
27
+
28
+ DEFINITIONS
29
+ "Font Software" refers to the set of files released by the Copyright
30
+ Holder(s) under this license and clearly marked as such. This may
31
+ include source files, build scripts and documentation.
32
+
33
+ "Reserved Font Name" refers to any names specified as such after the
34
+ copyright statement(s).
35
+
36
+ "Original Version" refers to the collection of Font Software components as
37
+ distributed by the Copyright Holder(s).
38
+
39
+ "Modified Version" refers to any derivative made by adding to, deleting,
40
+ or substituting -- in part or in whole -- any of the components of the
41
+ Original Version, by changing formats or by porting the Font Software to a
42
+ new environment.
43
+
44
+ "Author" refers to any designer, engineer, programmer, technical
45
+ writer or other person who contributed to the Font Software.
46
+
47
+ PERMISSION & CONDITIONS
48
+ Permission is hereby granted, free of charge, to any person obtaining
49
+ a copy of the Font Software, to use, study, copy, merge, embed, modify,
50
+ redistribute, and sell modified and unmodified copies of the Font
51
+ Software, subject to the following conditions:
52
+
53
+ 1) Neither the Font Software nor any of its individual components,
54
+ in Original or Modified Versions, may be sold by itself.
55
+
56
+ 2) Original or Modified Versions of the Font Software may be bundled,
57
+ redistributed and/or sold with any software, provided that each copy
58
+ contains the above copyright notice and this license. These can be
59
+ included either as stand-alone text files, human-readable headers or
60
+ in the appropriate machine-readable metadata fields within text or
61
+ binary files as long as those fields can be easily viewed by the user.
62
+
63
+ 3) No Modified Version of the Font Software may use the Reserved Font
64
+ Name(s) unless explicit written permission is granted by the corresponding
65
+ Copyright Holder. This restriction only applies to the primary font name as
66
+ presented to the users.
67
+
68
+ 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
69
+ Software shall not be used to promote, endorse or advertise any
70
+ Modified Version, except to acknowledge the contribution(s) of the
71
+ Copyright Holder(s) and the Author(s) or with their explicit written
72
+ permission.
73
+
74
+ 5) The Font Software, modified or unmodified, in part or in whole,
75
+ must be distributed entirely under this license, and must not be
76
+ distributed under any other license. The requirement for fonts to
77
+ remain under this license does not apply to any document created
78
+ using the Font Software.
79
+
80
+ TERMINATION
81
+ This license becomes null and void if any of the above conditions are
82
+ not met.
83
+
84
+ DISCLAIMER
85
+ THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
86
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
87
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
88
+ OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
89
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
90
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
91
+ DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
92
+ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
93
+ OTHER DEALINGS IN THE FONT SOFTWARE.
@@ -0,0 +1,106 @@
1
+ IBM Plex Sans Variable Font
2
+ ===========================
3
+
4
+ This download contains IBM Plex Sans as both variable fonts and static fonts.
5
+
6
+ IBM Plex Sans is a variable font with these axes:
7
+ wdth
8
+ wght
9
+
10
+ This means all the styles are contained in these files:
11
+ IBMPlexSans-VariableFont_wdth,wght.ttf
12
+ IBMPlexSans-Italic-VariableFont_wdth,wght.ttf
13
+
14
+ If your app fully supports variable fonts, you can now pick intermediate styles
15
+ that aren’t available as static fonts. Not all apps support variable fonts, and
16
+ in those cases you can use the static font files for IBM Plex Sans:
17
+ static/IBMPlexSans_Condensed-Thin.ttf
18
+ static/IBMPlexSans_Condensed-ExtraLight.ttf
19
+ static/IBMPlexSans_Condensed-Light.ttf
20
+ static/IBMPlexSans_Condensed-Regular.ttf
21
+ static/IBMPlexSans_Condensed-Medium.ttf
22
+ static/IBMPlexSans_Condensed-SemiBold.ttf
23
+ static/IBMPlexSans_Condensed-Bold.ttf
24
+ static/IBMPlexSans_SemiCondensed-Thin.ttf
25
+ static/IBMPlexSans_SemiCondensed-ExtraLight.ttf
26
+ static/IBMPlexSans_SemiCondensed-Light.ttf
27
+ static/IBMPlexSans_SemiCondensed-Regular.ttf
28
+ static/IBMPlexSans_SemiCondensed-Medium.ttf
29
+ static/IBMPlexSans_SemiCondensed-SemiBold.ttf
30
+ static/IBMPlexSans_SemiCondensed-Bold.ttf
31
+ static/IBMPlexSans-Thin.ttf
32
+ static/IBMPlexSans-ExtraLight.ttf
33
+ static/IBMPlexSans-Light.ttf
34
+ static/IBMPlexSans-Regular.ttf
35
+ static/IBMPlexSans-Medium.ttf
36
+ static/IBMPlexSans-SemiBold.ttf
37
+ static/IBMPlexSans-Bold.ttf
38
+ static/IBMPlexSans_Condensed-ThinItalic.ttf
39
+ static/IBMPlexSans_Condensed-ExtraLightItalic.ttf
40
+ static/IBMPlexSans_Condensed-LightItalic.ttf
41
+ static/IBMPlexSans_Condensed-Italic.ttf
42
+ static/IBMPlexSans_Condensed-MediumItalic.ttf
43
+ static/IBMPlexSans_Condensed-SemiBoldItalic.ttf
44
+ static/IBMPlexSans_Condensed-BoldItalic.ttf
45
+ static/IBMPlexSans_SemiCondensed-ThinItalic.ttf
46
+ static/IBMPlexSans_SemiCondensed-ExtraLightItalic.ttf
47
+ static/IBMPlexSans_SemiCondensed-LightItalic.ttf
48
+ static/IBMPlexSans_SemiCondensed-Italic.ttf
49
+ static/IBMPlexSans_SemiCondensed-MediumItalic.ttf
50
+ static/IBMPlexSans_SemiCondensed-SemiBoldItalic.ttf
51
+ static/IBMPlexSans_SemiCondensed-BoldItalic.ttf
52
+ static/IBMPlexSans-ThinItalic.ttf
53
+ static/IBMPlexSans-ExtraLightItalic.ttf
54
+ static/IBMPlexSans-LightItalic.ttf
55
+ static/IBMPlexSans-Italic.ttf
56
+ static/IBMPlexSans-MediumItalic.ttf
57
+ static/IBMPlexSans-SemiBoldItalic.ttf
58
+ static/IBMPlexSans-BoldItalic.ttf
59
+
60
+ Get started
61
+ -----------
62
+
63
+ 1. Install the font files you want to use
64
+
65
+ 2. Use your app's font picker to view the font family and all the
66
+ available styles
67
+
68
+ Learn more about variable fonts
69
+ -------------------------------
70
+
71
+ https://developers.google.com/web/fundamentals/design-and-ux/typography/variable-fonts
72
+ https://variablefonts.typenetwork.com
73
+ https://medium.com/variable-fonts
74
+
75
+ In desktop apps
76
+
77
+ https://theblog.adobe.com/can-variable-fonts-illustrator-cc
78
+ https://helpx.adobe.com/nz/photoshop/using/fonts.html#variable_fonts
79
+
80
+ Online
81
+
82
+ https://developers.google.com/fonts/docs/getting_started
83
+ https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts/Variable_Fonts_Guide
84
+ https://developer.microsoft.com/en-us/microsoft-edge/testdrive/demos/variable-fonts
85
+
86
+ Installing fonts
87
+
88
+ MacOS: https://support.apple.com/en-us/HT201749
89
+ Linux: https://www.google.com/search?q=how+to+install+a+font+on+gnu%2Blinux
90
+ Windows: https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows
91
+
92
+ Android Apps
93
+
94
+ https://developers.google.com/fonts/docs/android
95
+ https://developer.android.com/guide/topics/ui/look-and-feel/downloadable-fonts
96
+
97
+ License
98
+ -------
99
+ Please read the full license text (OFL.txt) to understand the permissions,
100
+ restrictions and requirements for usage, redistribution, and modification.
101
+
102
+ You can use them in your products & projects – print or digital,
103
+ commercial or otherwise.
104
+
105
+ This isn't legal advice, please consider consulting a lawyer and see the full
106
+ license for all details.
@@ -0,0 +1,93 @@
1
+ Copyright 2020 The Inter Project Authors (https://github.com/rsms/inter)
2
+
3
+ This Font Software is licensed under the SIL Open Font License, Version 1.1.
4
+ This license is copied below, and is also available with a FAQ at:
5
+ https://openfontlicense.org
6
+
7
+
8
+ -----------------------------------------------------------
9
+ SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
10
+ -----------------------------------------------------------
11
+
12
+ PREAMBLE
13
+ The goals of the Open Font License (OFL) are to stimulate worldwide
14
+ development of collaborative font projects, to support the font creation
15
+ efforts of academic and linguistic communities, and to provide a free and
16
+ open framework in which fonts may be shared and improved in partnership
17
+ with others.
18
+
19
+ The OFL allows the licensed fonts to be used, studied, modified and
20
+ redistributed freely as long as they are not sold by themselves. The
21
+ fonts, including any derivative works, can be bundled, embedded,
22
+ redistributed and/or sold with any software provided that any reserved
23
+ names are not used by derivative works. The fonts and derivatives,
24
+ however, cannot be released under any other type of license. The
25
+ requirement for fonts to remain under this license does not apply
26
+ to any document created using the fonts or their derivatives.
27
+
28
+ DEFINITIONS
29
+ "Font Software" refers to the set of files released by the Copyright
30
+ Holder(s) under this license and clearly marked as such. This may
31
+ include source files, build scripts and documentation.
32
+
33
+ "Reserved Font Name" refers to any names specified as such after the
34
+ copyright statement(s).
35
+
36
+ "Original Version" refers to the collection of Font Software components as
37
+ distributed by the Copyright Holder(s).
38
+
39
+ "Modified Version" refers to any derivative made by adding to, deleting,
40
+ or substituting -- in part or in whole -- any of the components of the
41
+ Original Version, by changing formats or by porting the Font Software to a
42
+ new environment.
43
+
44
+ "Author" refers to any designer, engineer, programmer, technical
45
+ writer or other person who contributed to the Font Software.
46
+
47
+ PERMISSION & CONDITIONS
48
+ Permission is hereby granted, free of charge, to any person obtaining
49
+ a copy of the Font Software, to use, study, copy, merge, embed, modify,
50
+ redistribute, and sell modified and unmodified copies of the Font
51
+ Software, subject to the following conditions:
52
+
53
+ 1) Neither the Font Software nor any of its individual components,
54
+ in Original or Modified Versions, may be sold by itself.
55
+
56
+ 2) Original or Modified Versions of the Font Software may be bundled,
57
+ redistributed and/or sold with any software, provided that each copy
58
+ contains the above copyright notice and this license. These can be
59
+ included either as stand-alone text files, human-readable headers or
60
+ in the appropriate machine-readable metadata fields within text or
61
+ binary files as long as those fields can be easily viewed by the user.
62
+
63
+ 3) No Modified Version of the Font Software may use the Reserved Font
64
+ Name(s) unless explicit written permission is granted by the corresponding
65
+ Copyright Holder. This restriction only applies to the primary font name as
66
+ presented to the users.
67
+
68
+ 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
69
+ Software shall not be used to promote, endorse or advertise any
70
+ Modified Version, except to acknowledge the contribution(s) of the
71
+ Copyright Holder(s) and the Author(s) or with their explicit written
72
+ permission.
73
+
74
+ 5) The Font Software, modified or unmodified, in part or in whole,
75
+ must be distributed entirely under this license, and must not be
76
+ distributed under any other license. The requirement for fonts to
77
+ remain under this license does not apply to any document created
78
+ using the Font Software.
79
+
80
+ TERMINATION
81
+ This license becomes null and void if any of the above conditions are
82
+ not met.
83
+
84
+ DISCLAIMER
85
+ THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
86
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
87
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
88
+ OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
89
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
90
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
91
+ DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
92
+ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
93
+ OTHER DEALINGS IN THE FONT SOFTWARE.
@@ -0,0 +1,10 @@
1
+ # This is the official list of project authors for copyright purposes.
2
+ # This file is distinct from the CONTRIBUTORS.txt file.
3
+ # See the latter for an explanation.
4
+ #
5
+ # Names should be added to this file as:
6
+ # Name or Organization <email address>
7
+
8
+ JetBrains <>
9
+ Philipp Nurullin <philipp.nurullin@jetbrains.com>
10
+ Konstantin Bulenkov <kb@jetbrains.com>
@@ -0,0 +1,93 @@
1
+ Copyright 2020 The JetBrains Mono Project Authors (https://github.com/JetBrains/JetBrainsMono)
2
+
3
+ This Font Software is licensed under the SIL Open Font License, Version 1.1.
4
+ This license is copied below, and is also available with a FAQ at:
5
+ https://scripts.sil.org/OFL
6
+
7
+
8
+ -----------------------------------------------------------
9
+ SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
10
+ -----------------------------------------------------------
11
+
12
+ PREAMBLE
13
+ The goals of the Open Font License (OFL) are to stimulate worldwide
14
+ development of collaborative font projects, to support the font creation
15
+ efforts of academic and linguistic communities, and to provide a free and
16
+ open framework in which fonts may be shared and improved in partnership
17
+ with others.
18
+
19
+ The OFL allows the licensed fonts to be used, studied, modified and
20
+ redistributed freely as long as they are not sold by themselves. The
21
+ fonts, including any derivative works, can be bundled, embedded,
22
+ redistributed and/or sold with any software provided that any reserved
23
+ names are not used by derivative works. The fonts and derivatives,
24
+ however, cannot be released under any other type of license. The
25
+ requirement for fonts to remain under this license does not apply
26
+ to any document created using the fonts or their derivatives.
27
+
28
+ DEFINITIONS
29
+ "Font Software" refers to the set of files released by the Copyright
30
+ Holder(s) under this license and clearly marked as such. This may
31
+ include source files, build scripts and documentation.
32
+
33
+ "Reserved Font Name" refers to any names specified as such after the
34
+ copyright statement(s).
35
+
36
+ "Original Version" refers to the collection of Font Software components as
37
+ distributed by the Copyright Holder(s).
38
+
39
+ "Modified Version" refers to any derivative made by adding to, deleting,
40
+ or substituting -- in part or in whole -- any of the components of the
41
+ Original Version, by changing formats or by porting the Font Software to a
42
+ new environment.
43
+
44
+ "Author" refers to any designer, engineer, programmer, technical
45
+ writer or other person who contributed to the Font Software.
46
+
47
+ PERMISSION & CONDITIONS
48
+ Permission is hereby granted, free of charge, to any person obtaining
49
+ a copy of the Font Software, to use, study, copy, merge, embed, modify,
50
+ redistribute, and sell modified and unmodified copies of the Font
51
+ Software, subject to the following conditions:
52
+
53
+ 1) Neither the Font Software nor any of its individual components,
54
+ in Original or Modified Versions, may be sold by itself.
55
+
56
+ 2) Original or Modified Versions of the Font Software may be bundled,
57
+ redistributed and/or sold with any software, provided that each copy
58
+ contains the above copyright notice and this license. These can be
59
+ included either as stand-alone text files, human-readable headers or
60
+ in the appropriate machine-readable metadata fields within text or
61
+ binary files as long as those fields can be easily viewed by the user.
62
+
63
+ 3) No Modified Version of the Font Software may use the Reserved Font
64
+ Name(s) unless explicit written permission is granted by the corresponding
65
+ Copyright Holder. This restriction only applies to the primary font name as
66
+ presented to the users.
67
+
68
+ 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
69
+ Software shall not be used to promote, endorse or advertise any
70
+ Modified Version, except to acknowledge the contribution(s) of the
71
+ Copyright Holder(s) and the Author(s) or with their explicit written
72
+ permission.
73
+
74
+ 5) The Font Software, modified or unmodified, in part or in whole,
75
+ must be distributed entirely under this license, and must not be
76
+ distributed under any other license. The requirement for fonts to
77
+ remain under this license does not apply to any document created
78
+ using the Font Software.
79
+
80
+ TERMINATION
81
+ This license becomes null and void if any of the above conditions are
82
+ not met.
83
+
84
+ DISCLAIMER
85
+ THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
86
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
87
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
88
+ OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
89
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
90
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
91
+ DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
92
+ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
93
+ OTHER DEALINGS IN THE FONT SOFTWARE.
@@ -0,0 +1,93 @@
1
+ Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.
2
+
3
+ This Font Software is licensed under the SIL Open Font License, Version 1.1.
4
+ This license is copied below, and is also available with a FAQ at:
5
+ https://openfontlicense.org
6
+
7
+
8
+ -----------------------------------------------------------
9
+ SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
10
+ -----------------------------------------------------------
11
+
12
+ PREAMBLE
13
+ The goals of the Open Font License (OFL) are to stimulate worldwide
14
+ development of collaborative font projects, to support the font creation
15
+ efforts of academic and linguistic communities, and to provide a free and
16
+ open framework in which fonts may be shared and improved in partnership
17
+ with others.
18
+
19
+ The OFL allows the licensed fonts to be used, studied, modified and
20
+ redistributed freely as long as they are not sold by themselves. The
21
+ fonts, including any derivative works, can be bundled, embedded,
22
+ redistributed and/or sold with any software provided that any reserved
23
+ names are not used by derivative works. The fonts and derivatives,
24
+ however, cannot be released under any other type of license. The
25
+ requirement for fonts to remain under this license does not apply
26
+ to any document created using the fonts or their derivatives.
27
+
28
+ DEFINITIONS
29
+ "Font Software" refers to the set of files released by the Copyright
30
+ Holder(s) under this license and clearly marked as such. This may
31
+ include source files, build scripts and documentation.
32
+
33
+ "Reserved Font Name" refers to any names specified as such after the
34
+ copyright statement(s).
35
+
36
+ "Original Version" refers to the collection of Font Software components as
37
+ distributed by the Copyright Holder(s).
38
+
39
+ "Modified Version" refers to any derivative made by adding to, deleting,
40
+ or substituting -- in part or in whole -- any of the components of the
41
+ Original Version, by changing formats or by porting the Font Software to a
42
+ new environment.
43
+
44
+ "Author" refers to any designer, engineer, programmer, technical
45
+ writer or other person who contributed to the Font Software.
46
+
47
+ PERMISSION & CONDITIONS
48
+ Permission is hereby granted, free of charge, to any person obtaining
49
+ a copy of the Font Software, to use, study, copy, merge, embed, modify,
50
+ redistribute, and sell modified and unmodified copies of the Font
51
+ Software, subject to the following conditions:
52
+
53
+ 1) Neither the Font Software nor any of its individual components,
54
+ in Original or Modified Versions, may be sold by itself.
55
+
56
+ 2) Original or Modified Versions of the Font Software may be bundled,
57
+ redistributed and/or sold with any software, provided that each copy
58
+ contains the above copyright notice and this license. These can be
59
+ included either as stand-alone text files, human-readable headers or
60
+ in the appropriate machine-readable metadata fields within text or
61
+ binary files as long as those fields can be easily viewed by the user.
62
+
63
+ 3) No Modified Version of the Font Software may use the Reserved Font
64
+ Name(s) unless explicit written permission is granted by the corresponding
65
+ Copyright Holder. This restriction only applies to the primary font name as
66
+ presented to the users.
67
+
68
+ 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
69
+ Software shall not be used to promote, endorse or advertise any
70
+ Modified Version, except to acknowledge the contribution(s) of the
71
+ Copyright Holder(s) and the Author(s) or with their explicit written
72
+ permission.
73
+
74
+ 5) The Font Software, modified or unmodified, in part or in whole,
75
+ must be distributed entirely under this license, and must not be
76
+ distributed under any other license. The requirement for fonts to
77
+ remain under this license does not apply to any document created
78
+ using the Font Software.
79
+
80
+ TERMINATION
81
+ This license becomes null and void if any of the above conditions are
82
+ not met.
83
+
84
+ DISCLAIMER
85
+ THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
86
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
87
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
88
+ OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
89
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
90
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
91
+ DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
92
+ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
93
+ OTHER DEALINGS IN THE FONT SOFTWARE.
@@ -0,0 +1,79 @@
1
+ Source Code Pro Variable Font
2
+ =============================
3
+
4
+ This download contains Source Code Pro as both variable fonts and static fonts.
5
+
6
+ Source Code Pro is a variable font with this axis:
7
+ wght
8
+
9
+ This means all the styles are contained in these files:
10
+ Source_Code_Pro/SourceCodePro-VariableFont_wght.ttf
11
+ Source_Code_Pro/SourceCodePro-Italic-VariableFont_wght.ttf
12
+
13
+ If your app fully supports variable fonts, you can now pick intermediate styles
14
+ that aren’t available as static fonts. Not all apps support variable fonts, and
15
+ in those cases you can use the static font files for Source Code Pro:
16
+ Source_Code_Pro/static/SourceCodePro-ExtraLight.ttf
17
+ Source_Code_Pro/static/SourceCodePro-Light.ttf
18
+ Source_Code_Pro/static/SourceCodePro-Regular.ttf
19
+ Source_Code_Pro/static/SourceCodePro-Medium.ttf
20
+ Source_Code_Pro/static/SourceCodePro-SemiBold.ttf
21
+ Source_Code_Pro/static/SourceCodePro-Bold.ttf
22
+ Source_Code_Pro/static/SourceCodePro-ExtraBold.ttf
23
+ Source_Code_Pro/static/SourceCodePro-Black.ttf
24
+ Source_Code_Pro/static/SourceCodePro-ExtraLightItalic.ttf
25
+ Source_Code_Pro/static/SourceCodePro-LightItalic.ttf
26
+ Source_Code_Pro/static/SourceCodePro-Italic.ttf
27
+ Source_Code_Pro/static/SourceCodePro-MediumItalic.ttf
28
+ Source_Code_Pro/static/SourceCodePro-SemiBoldItalic.ttf
29
+ Source_Code_Pro/static/SourceCodePro-BoldItalic.ttf
30
+ Source_Code_Pro/static/SourceCodePro-ExtraBoldItalic.ttf
31
+ Source_Code_Pro/static/SourceCodePro-BlackItalic.ttf
32
+
33
+ Get started
34
+ -----------
35
+
36
+ 1. Install the font files you want to use
37
+
38
+ 2. Use your app's font picker to view the font family and all the
39
+ available styles
40
+
41
+ Learn more about variable fonts
42
+ -------------------------------
43
+
44
+ https://developers.google.com/web/fundamentals/design-and-ux/typography/variable-fonts
45
+ https://variablefonts.typenetwork.com
46
+ https://medium.com/variable-fonts
47
+
48
+ In desktop apps
49
+
50
+ https://theblog.adobe.com/can-variable-fonts-illustrator-cc
51
+ https://helpx.adobe.com/nz/photoshop/using/fonts.html#variable_fonts
52
+
53
+ Online
54
+
55
+ https://developers.google.com/fonts/docs/getting_started
56
+ https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts/Variable_Fonts_Guide
57
+ https://developer.microsoft.com/en-us/microsoft-edge/testdrive/demos/variable-fonts
58
+
59
+ Installing fonts
60
+
61
+ MacOS: https://support.apple.com/en-us/HT201749
62
+ Linux: https://www.google.com/search?q=how+to+install+a+font+on+gnu%2Blinux
63
+ Windows: https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows
64
+
65
+ Android Apps
66
+
67
+ https://developers.google.com/fonts/docs/android
68
+ https://developer.android.com/guide/topics/ui/look-and-feel/downloadable-fonts
69
+
70
+ License
71
+ -------
72
+ Please read the full license text (OFL.txt) to understand the permissions,
73
+ restrictions and requirements for usage, redistribution, and modification.
74
+
75
+ You can use them in your products & projects – print or digital,
76
+ commercial or otherwise.
77
+
78
+ This isn't legal advice, please consider consulting a lawyer and see the full
79
+ license for all details.