azion-theme 1.11.8 → 1.12.0

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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [1.12.0](https://github.com/aziontech/azion-theme/compare/v1.11.8...v1.12.0) (2025-08-05)
2
+
3
+ ### Features
4
+
5
+ * add Proto Mono, Roboto Condensed, and Titillium Web font faces … ([#48](https://github.com/aziontech/azion-theme/issues/48)) ([7180048](https://github.com/aziontech/azion-theme/commit/71800487580a514b49d4f336297430375a541127))
6
+
1
7
  ## [1.11.8](https://github.com/aziontech/azion-theme/compare/v1.11.7...v1.11.8) (2025-08-05)
2
8
 
3
9
  ### Bug Fixes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "azion-theme",
3
3
  "type": "module",
4
- "version": "1.11.8",
4
+ "version": "1.12.0",
5
5
  "author": "aziontech",
6
6
  "contributors": [
7
7
  {
@@ -93,3 +93,53 @@
93
93
  font-style: normal;
94
94
  font-display: swap;
95
95
  }
96
+
97
+ @font-face {
98
+ font-family: 'Proto Mono';
99
+ src: url('https://fonts.azion.com/proto-mono/ProtoMono-Light.woff2') format('woff2');
100
+ font-weight: 300;
101
+ font-style: normal;
102
+ font-display: swap;
103
+ }
104
+
105
+ @font-face {
106
+ font-family: 'Proto Mono';
107
+ src: url('https://fonts.azion.com/proto-mono/ProtoMono-Regular.woff2') format('woff2');
108
+ font-weight: 400;
109
+ font-style: normal;
110
+ font-display: swap;
111
+ }
112
+
113
+ @font-face {
114
+ font-family: 'Proto Mono';
115
+ src: url('https://fonts.azion.com/proto-mono/ProtoMono-Medium.woff2') format('woff2');
116
+ font-weight: 500;
117
+ font-style: normal;
118
+ font-display: swap;
119
+ }
120
+
121
+ @font-face {
122
+ font-family: 'Proto Mono';
123
+ src: url('https://fonts.azion.com/proto-mono/ProtoMono-SemiBold.woff2') format('woff2');
124
+ font-weight: 600;
125
+ font-style: normal;
126
+ font-display: swap;
127
+ }
128
+
129
+ @font-face {
130
+ font-family: 'Roboto Condensed';
131
+ src: url('https://fonts.azion.com/roboto-condensed/RobotoCondensed-Italic.woff') format('woff'),
132
+ url('https://fonts.azion.com/roboto-condensed/RobotoCondensed-Italic.ttf') format('truetype');
133
+ font-weight: 400;
134
+ font-style: italic;
135
+ font-display: swap;
136
+ }
137
+
138
+ @font-face {
139
+ font-family: 'Titillium Web';
140
+ src: url('https://fonts.azion.com/titillium-web/TitilliumWeb-Italic.woff') format('woff'),
141
+ url('https://fonts.azion.com/titillium-web/TitilliumWeb-Italic.ttf') format('truetype');
142
+ font-weight: 400;
143
+ font-style: italic;
144
+ font-display: swap;
145
+ }