@conduction/theme 1.0.1 → 1.0.3
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/fonts/Aldritch.woff2 +0 -0
- package/package.json +1 -4
- package/theme.css +34 -2
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@conduction/theme",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Conduction's design tokens theme",
|
|
5
5
|
"main": "index.js",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"build": "tsc"
|
|
8
|
-
},
|
|
9
6
|
"repository": {
|
|
10
7
|
"type": "git",
|
|
11
8
|
"url": "git+https://github.com/ConductionNL/conduction-theme.git"
|
package/theme.css
CHANGED
|
@@ -76,10 +76,42 @@
|
|
|
76
76
|
|
|
77
77
|
/*
|
|
78
78
|
*
|
|
79
|
-
* UTRECHT COMPONENTS
|
|
79
|
+
* UTRECHT COMPONENTS & DEFAULTS
|
|
80
80
|
*
|
|
81
81
|
*/
|
|
82
82
|
|
|
83
|
+
/* Sizes */
|
|
84
|
+
|
|
85
|
+
--utrecht-space-block-3xs: var(--conduction-size-3xs);
|
|
86
|
+
--utrecht-space-block-2xs: var(--conduction-size-2xs);
|
|
87
|
+
--utrecht-space-block-xs: var(--conduction-size-xs);
|
|
88
|
+
--utrecht-space-block-sm: var(--conduction-size-sm);
|
|
89
|
+
--utrecht-space-block-md: var(--conduction-size-md);
|
|
90
|
+
--utrecht-space-block-lg: var(--conduction-size-lg);
|
|
91
|
+
--utrecht-space-block-xl: var(--conduction-size-xl);
|
|
92
|
+
--utrecht-space-block-2xl: var(--conduction-size-2xl);
|
|
93
|
+
--utrecht-space-block-3xl: var(--conduction-size-3xl);
|
|
94
|
+
|
|
95
|
+
--utrecht-space-inline-3xs: var(--conduction-size-3xs);
|
|
96
|
+
--utrecht-space-inline-2xs: var(--conduction-size-2xs);
|
|
97
|
+
--utrecht-space-inline-xs: var(--conduction-size-xs);
|
|
98
|
+
--utrecht-space-inline-sm: var(--conduction-size-sm);
|
|
99
|
+
--utrecht-space-inline-md: var(--conduction-size-md);
|
|
100
|
+
--utrecht-space-inline-lg: var(--conduction-size-lg);
|
|
101
|
+
--utrecht-space-inline-xl: var(--conduction-size-xl);
|
|
102
|
+
--utrecht-space-inline-2xl: var(--conduction-size-2xl);
|
|
103
|
+
--utrecht-space-inline-3xl: var(--conduction-size-3xl);
|
|
104
|
+
|
|
105
|
+
--utrecht-typography-scale-2xs: var(--conduction-font-size-2xs);
|
|
106
|
+
--utrecht-typography-scale-xs: var(--conduction-font-size-xs);
|
|
107
|
+
--utrecht-typography-scale-sm: var(--conduction-font-size-sm);
|
|
108
|
+
--utrecht-typography-scale-md: var(--conduction-font-size-md);
|
|
109
|
+
--utrecht-typography-scale-lg: var(--conduction-font-size-lg);
|
|
110
|
+
--utrecht-typography-scale-xl: var(--conduction-font-size-xl);
|
|
111
|
+
--utrecht-typography-scale-2xl: var(--conduction-font-size-2xl);
|
|
112
|
+
--utrecht-typography-scale-3xl: var(--conduction-font-size-3xl);
|
|
113
|
+
--utrecht-typography-scale-4xl: var(--conduction-font-size-4xl);
|
|
114
|
+
|
|
83
115
|
/* Document */
|
|
84
116
|
--utrecht-document-font-family: var(--conduction-typography-sans-serif-font-family);
|
|
85
117
|
--utrecht-document-font-size: var(--conduction-font-size-md);
|
|
@@ -275,5 +307,5 @@
|
|
|
275
307
|
|
|
276
308
|
@font-face {
|
|
277
309
|
font-family: "Aldritch";
|
|
278
|
-
src: url("
|
|
310
|
+
src: url("./fonts/Aldritch.woff2") format("woff2");
|
|
279
311
|
}
|