@manafishrov/ui 1.4.6 → 1.5.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/dist/theme.css +1 -1
- package/package.json +2 -1
- package/src/theme.css +5 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package",
|
|
3
3
|
"name": "@manafishrov/ui",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.5.0",
|
|
5
5
|
"description": "Styled component library for Manafish interfaces ",
|
|
6
6
|
"license": "AGPL-3.0-or-later",
|
|
7
7
|
"repository": {
|
|
@@ -239,6 +239,7 @@
|
|
|
239
239
|
},
|
|
240
240
|
"dependencies": {
|
|
241
241
|
"@ark-ui/solid": "5.34.1",
|
|
242
|
+
"@fontsource-variable/google-sans-code": "5.2.3",
|
|
242
243
|
"@fontsource-variable/google-sans-flex": "5.2.1",
|
|
243
244
|
"@fontsource/chakra-petch": "5.2.7",
|
|
244
245
|
"@fontsource/rajdhani": "5.2.7",
|
package/src/theme.css
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
@import '@fontsource/rajdhani/600';
|
|
6
6
|
@import '@fontsource/rajdhani/700';
|
|
7
7
|
@import '@fontsource-variable/google-sans-flex';
|
|
8
|
+
@import '@fontsource-variable/google-sans-code';
|
|
8
9
|
@import './components/marquee/marquee.css';
|
|
9
10
|
@import './components/toaster/toaster.css';
|
|
10
11
|
|
|
@@ -81,9 +82,12 @@
|
|
|
81
82
|
}
|
|
82
83
|
|
|
83
84
|
@theme inline {
|
|
84
|
-
--font-
|
|
85
|
+
--font-sans:
|
|
85
86
|
'Google Sans Flex Variable', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji',
|
|
86
87
|
'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
88
|
+
--font-mono:
|
|
89
|
+
'Google Sans Code Variable', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
|
|
90
|
+
'Liberation Mono', 'Courier New', monospace;
|
|
87
91
|
--font-heading:
|
|
88
92
|
'Rajdhani', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
|
|
89
93
|
'Segoe UI Symbol', 'Noto Color Emoji';
|