fluent-svelte-extra 1.0.9 → 1.1.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/theme.css +9 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fluent-svelte-extra",
3
- "version": "1.0.9",
3
+ "version": "1.1.0",
4
4
  "description": "A faithful implementation of Microsoft's Fluent Design System in Svelte.",
5
5
  "homepage": "https://github.com/OpenAnime/fluent-svelte-extra",
6
6
  "license": "MIT",
package/theme.css CHANGED
@@ -1,3 +1,8 @@
1
+ @font-face {
2
+ font-family: "Segoe UI Variable";
3
+ src: url("/segoeui.ttf");
4
+ }
5
+
1
6
  /* Global Variables */
2
7
  :root {
3
8
  /* Accent Colors */
@@ -10,14 +15,10 @@
10
15
  --fds-accent-dark-3: 226, 100%, 20%;
11
16
 
12
17
  /* Font Families */
13
- --fds-font-family-fallback: "Segoe UI", -apple-system, ui-sans-serif, system-ui,
14
- BlinkMacSystemFont, Helvetica, Arial, sans-serif;
15
- --fds-font-family-text: "Segoe UI Variable Text", "Seoge UI Variable Static Text",
16
- var(--fds-font-family-fallback);
17
- --fds-font-family-small: "Segoe UI Variable Small", "Seoge UI Variable Static Small",
18
- var(--fds-font-family-fallback);
19
- --fds-font-family-display: "Segoe UI Variable Display", "Seoge UI Variable Static Display",
20
- var(--fds-font-family-fallback);
18
+ --fds-font-family-fallback: "Segoe UI Variable";
19
+ --fds-font-family-text: "Segoe UI Variable";
20
+ --fds-font-family-small: "Segoe UI Variable";
21
+ --fds-font-family-display: "Segoe UI Variable";
21
22
 
22
23
  /* Font Size */
23
24
  --fds-caption-font-size: 12px;