ada-ui 5.6.0 → 5.7.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # ada-ui
2
2
 
3
+ ## 5.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 4655a60: Added another green variant
8
+
3
9
  ## 5.6.0
4
10
 
5
11
  ### 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.29;--c-base: 0.07;--l-base-light: 0.4;--c-base-light: 0.1}.default,:root{--hue: 155}.shade1{--hue: 138}.shade2{--hue: 129}.shade3{--hue: 185}.warn{--hue: 29}
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "ada-ui",
3
- "version": "5.6.0",
3
+ "version": "5.7.0",
4
4
  "scripts": {
5
- "dev": "concurrently -n scss,serve 'sass scss:css --watch' 'alive-server .'",
5
+ "dev": "concurrently -n scss,serve 'sass scss:css --watch --embed-source-map' 'alive-server .'",
6
+ "postdev": "git checkout css/*",
6
7
  "build": "rm -rf css && sass scss:css -s compressed --no-source-map",
7
8
  "changeset": "changeset",
8
9
  "remove-snapshot": "f(){ if [ -z \"$1\" ]; then echo \"Error: No tag name specified, exiting.\"; exit 1; fi; npm dist-tag rm ada-ui $1; }; f",
@@ -0,0 +1,35 @@
1
+ @import "ada.theme-base";
2
+
3
+ :root {
4
+ @extend .default;
5
+ --l-base: 0.29;
6
+ --c-base: 0.07;
7
+
8
+ --l-base-light: 0.4;
9
+ --c-base-light: 0.1;
10
+ }
11
+
12
+ .default {
13
+ @extend %colourShades;
14
+ --hue: 155;
15
+ }
16
+
17
+ .shade1 {
18
+ @extend %colourShades;
19
+ --hue: 138;
20
+ }
21
+
22
+ .shade2 {
23
+ @extend %colourShades;
24
+ --hue: 129;
25
+ }
26
+
27
+ .shade3 {
28
+ @extend %colourShades;
29
+ --hue: 185;
30
+ }
31
+
32
+ .warn {
33
+ @extend %colourShades;
34
+ --hue: 29;
35
+ }