ada-ui 5.7.0 → 5.7.2-npm-test-bef4599e2d22079f48ec7171002506a51f094e5d

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,5 +1,17 @@
1
1
  # ada-ui
2
2
 
3
+ ## 5.7.2-npm-test-bef4599e2d22079f48ec7171002506a51f094e5d
4
+
5
+ ### Patch Changes
6
+
7
+ - bef4599: test
8
+
9
+ ## 5.7.1
10
+
11
+ ### Patch Changes
12
+
13
+ - b54434c: Updated themes
14
+
3
15
  ## 5.7.0
4
16
 
5
17
  ### Minor Changes
@@ -0,0 +1 @@
1
+ .warn,.shade3,.shade2,.shade1,.default,:root{--bg-body: var(--color950);--fg-body: var(--color100);--bg-body-light: var(--color100);--fg-body-light: var(--color800);--color100: oklch(0.91 0.05 var(--hue));--color500: oklch( calc(var(--l-base) + 0.15) calc(var(--c-base) + 0.06) var(--hue) );--color600: oklch( calc(var(--l-base) + 0.1) calc(var(--c-base) + 0.04) var(--hue) );--color700: oklch( calc(var(--l-base) + 0.05) calc(var(--c-base) + 0.02) var(--hue) );--color800: oklch(var(--l-base) var(--c-base) var(--hue));--color950: oklch(0.18 0.03 var(--hue));--panel-background: oklch(var(--500) / 0.1)}.light-theme.warn,.light-theme.shade3,.light-theme.shade2,.light-theme.shade1,.light-theme.default,.light-theme:root,:root.light-theme .warn,:root.light-theme .shade3,:root.light-theme .shade2,:root.light-theme .shade1,:root.light-theme .default,:root.light-theme :root{--l-base: var(--l-base-light);--c-base: var(--c-base-light);--bg-body: var(--bg-body-light);--fg-body: var(--fg-body-light)}:root{--l-base: 0.34;--c-base: 0.1;--l-base-light: 0.42;--c-base-light: 0.13}.default,:root{--hue: 258}.shade1{--hue: 210}.shade2{--hue: 118}.shade3{--hue: 96}.warn{--hue: 29}
package/index.html CHANGED
@@ -31,7 +31,7 @@
31
31
  data-label="Typography"
32
32
  data-abbr="Typo"
33
33
  ></a>
34
- <a href="#spacing" class="command shade1">Spacing</a>
34
+ <a href="#spacing" class="command shade1">Spacing Test</a>
35
35
  <a href="#colors" class="command shade1">Colors</a>
36
36
  <a href="#page-layout" class="command shade1">Page Layout</a>
37
37
  <a
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ada-ui",
3
- "version": "5.7.0",
3
+ "version": "5.7.2-npm-test-bef4599e2d22079f48ec7171002506a51f094e5d",
4
4
  "scripts": {
5
5
  "dev": "concurrently -n scss,serve 'sass scss:css --watch --embed-source-map' 'alive-server .'",
6
6
  "postdev": "git checkout css/*",
@@ -0,0 +1,35 @@
1
+ @import "ada.theme-base";
2
+
3
+ :root {
4
+ @extend .default;
5
+ --l-base: 0.34;
6
+ --c-base: 0.1;
7
+
8
+ --l-base-light: 0.42;
9
+ --c-base-light: 0.13;
10
+ }
11
+
12
+ .default {
13
+ @extend %colourShades;
14
+ --hue: 258;
15
+ }
16
+
17
+ .shade1 {
18
+ @extend %colourShades;
19
+ --hue: 210;
20
+ }
21
+
22
+ .shade2 {
23
+ @extend %colourShades;
24
+ --hue: 118;
25
+ }
26
+
27
+ .shade3 {
28
+ @extend %colourShades;
29
+ --hue: 96;
30
+ }
31
+
32
+ .warn {
33
+ @extend %colourShades;
34
+ --hue: 29;
35
+ }
File without changes
File without changes