@run-ai-dev/styles 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.css +7 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@run-ai-dev/styles",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
5
  "sideEffects": true,
6
6
  "main": "./src/index.css",
package/src/index.css CHANGED
@@ -1,6 +1,7 @@
1
1
  @import "tailwindcss";
2
2
  @custom-variant lg (@media (min-width:1025px));
3
3
  @custom-variant max-lg (@media (max-width:1024px));
4
+ @custom-variant max-md (@media (max-width:767px));
4
5
  @custom-variant lightm (&:where(.lightm, .lightm *));
5
6
  @theme {
6
7
  --width-chat-header: calc(100% - 94px);
@@ -19,6 +20,7 @@
19
20
  --color-ultra-light-white: #ffffff0d;
20
21
  --color-dark-slate: #2b363d;
21
22
  --color-cool-gray: #909499;
23
+ --color-cool-grey: #c0ccd3;
22
24
  --color-dark-slate-transparent: #2b363dcc;
23
25
  --color-charcoal-gray: #3c4c57;
24
26
  --color-concrete-gray: #5f5f5f;
@@ -45,6 +47,7 @@
45
47
  --color-pale-pink: #fdefef;
46
48
  --color-light-sand: #fdf8e8;
47
49
  --color-pale-blue: #eeefff;
50
+ --color-cloudy-white: #dae1e5;
48
51
 
49
52
  /* FONT SIZE */
50
53
  /* 28 */
@@ -64,6 +67,10 @@
64
67
  --shadow-soft-light: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
65
68
  --shadow-elevated: 0px 6px 30px 0px rgba(0, 0, 0, 0.08);
66
69
  --shadow-subpop: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
70
+
71
+ /* BACKGROUND */
72
+ --background-image-gradient-dark: linear-gradient(180deg, rgba(15, 23, 29, 0) 0%, #0f171d 100%);
73
+ --background-image-gradient-light: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
67
74
  }
68
75
 
69
76
  .lightm {