@hkdigital/lib-sveltekit 0.1.10 → 0.1.11

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.
@@ -23,8 +23,8 @@ const theme = {
23
23
  '--base-font-weight': 'normal',
24
24
  '--base-font-style': 'normal',
25
25
  '--base-letter-spacing': '0em',
26
- '--heading-font-color': 'inherit',
27
- '--heading-font-color-dark': 'inherit',
26
+ '--heading-font-color': 'var(--color-surface-950)',
27
+ '--heading-font-color-dark': 'var(--color-surface-50)',
28
28
  '--heading-font-family': 'Guyot-Sans, system-ui, sans-serif',
29
29
  '--heading-font-weight': '900',
30
30
  '--heading-font-style': 'normal',
@@ -41,7 +41,6 @@ const theme = {
41
41
  '--anchor-text-decoration-hover': 'underline',
42
42
  '--anchor-text-decoration-active': 'none',
43
43
  '--anchor-text-decoration-focus': 'none',
44
-
45
44
  '--ui-font-color': 'var(--color-surface-950)',
46
45
  '--ui-font-color-dark': 'var(--color-surface-50)',
47
46
  '--ui-font-family': 'Source Sans Pro, system-ui, sans-serif',
@@ -50,7 +49,6 @@ const theme = {
50
49
  '--ui-font-weight': 'normal',
51
50
  '--ui-font-style': 'normal',
52
51
  '--ui-letter-spacing': '0em',
53
-
54
52
  '--space-scale-factor': '1',
55
53
  '--radii-default': '6px',
56
54
  '--radii-container': '12px',
@@ -42,22 +42,22 @@ export function customUtilitiesPlugin({ addUtilities }) {
42
42
  'font-family': 'var(--ui-font-family, var(--base-font-family))'
43
43
  },
44
44
  '.text-base-color': {
45
- color: 'var(--base-font-color)'
45
+ color: 'rgb( var(--base-font-color) )'
46
46
  },
47
47
  '.text-base-color-dark': {
48
- color: 'var(--base-font-color-dark)'
48
+ color: 'rgb( var(--base-font-color-dark) )'
49
49
  },
50
50
  '.text-heading-color': {
51
- color: 'var(--heading-font-color)'
51
+ color: 'rgb( var(--heading-font-color) )'
52
52
  },
53
53
  '.text-heading-color-dark': {
54
- color: 'var(--heading-font-color-dark)'
54
+ color: 'rgb( var(--heading-font-color-dark) )'
55
55
  },
56
56
  '.text-ui-color': {
57
- color: 'var(--ui-font-color, var(--base-font-color))'
57
+ color: 'rgb( var(--ui-font-color, var(--base-font-color)) )'
58
58
  },
59
59
  '.text-ui-color-dark': {
60
- color: 'var(--ui-font-color-dark, var(--base-font-color-dark))'
60
+ color: 'rgb( var(--ui-font-color-dark, var(--base-font-color-dark)) )'
61
61
  }
62
62
  };
63
63
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hkdigital/lib-sveltekit",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "author": {
5
5
  "name": "HKdigital",
6
6
  "url": "https://hkdigital.nl"