@run-ai-dev/styles 1.0.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.
Files changed (2) hide show
  1. package/package.json +25 -0
  2. package/src/index.css +72 -0
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@run-ai-dev/styles",
3
+ "version": "1.0.0",
4
+ "type": "module",
5
+ "sideEffects": true,
6
+ "main": "./src/index.css",
7
+ "style": "./src/index.css",
8
+ "exports": {
9
+ ".": "./src/index.css",
10
+ "./css": "./src/index.css"
11
+ },
12
+ "files": [
13
+ "src"
14
+ ],
15
+ "scripts": {
16
+ "publish:npm": "npm publish --access public"
17
+ },
18
+ "publishConfig": {
19
+ "access": "public"
20
+ },
21
+ "peerDependencies": {
22
+ "tailwindcss": ">=4.0.0"
23
+ },
24
+ "packageManager": "pnpm@10.12.3+sha512.467df2c586056165580ad6dfb54ceaad94c5a30f80893ebdec5a44c5aa73c205ae4a5bb9d5ed6bb84ea7c249ece786642bbb49d06a307df218d03da41c317417"
25
+ }
package/src/index.css ADDED
@@ -0,0 +1,72 @@
1
+ @import "tailwindcss";
2
+ @custom-variant lg (@media (min-width:1025px));
3
+ @custom-variant max-lg (@media (max-width:1024px));
4
+ @custom-variant lightm (&:where(.lightm, .lightm *));
5
+ @theme {
6
+ --width-chat-header: calc(100% - 94px);
7
+ --width-grid-item: calc(100% / 6);
8
+ --width-grid-mb: calc(100% / 2);
9
+ --color-dark-gray: #8a8a8a;
10
+ --color-dark-popup: #00000099;
11
+ --color-black-10: #0000001a;
12
+ --color-light-gray: #b5b5b5;
13
+ --color-light-silver: #b5b5b5;
14
+ --color-gray-light: #eeeeee;
15
+ --color-dark-grey: #494949;
16
+ --color-slate-grey: #4e6270;
17
+ --color-ultra-light-gray: #e6e6e6;
18
+ --color-transparent-white: #ffffff1a;
19
+ --color-ultra-light-white: #ffffff0d;
20
+ --color-dark-slate: #2b363d;
21
+ --color-cool-gray: #909499;
22
+ --color-dark-slate-transparent: #2b363dcc;
23
+ --color-charcoal-gray: #3c4c57;
24
+ --color-concrete-gray: #5f5f5f;
25
+ --color-deep-space: #171d21;
26
+ --color-dark-charcoal: #3764fc;
27
+ --color-owl-black: #232425;
28
+ --color-white-c: #ffffff;
29
+ --color-black-c: #000000;
30
+ --color-gainsboro: #eaeaea;
31
+ --color-jetblack: #343434;
32
+ --color-charcoal-blue: #20272d;
33
+ --color-white-smoke: #f5f5f5;
34
+ --color-silver: #cacaca;
35
+ --color-dark: #0f171d;
36
+ --color-anti-flash: #f2f2f2;
37
+ --color-silver-gray: #c0bebe;
38
+ --color-gray-silver: #dbdbdb;
39
+ --color-white-60: #ffffff99;
40
+ --color-apple-green: #43c361;
41
+ --color-pomegranate: #eb5757;
42
+ --color-saffron: #ffb835;
43
+ --color-cornflower-blue: #5888ff;
44
+ --color-light-min: #e6faf5;
45
+ --color-pale-pink: #fdefef;
46
+ --color-light-sand: #fdf8e8;
47
+ --color-pale-blue: #eeefff;
48
+
49
+ /* FONT SIZE */
50
+ /* 28 */
51
+ --text-28: 28px;
52
+ --leading-28: 36px;
53
+ /* 32 */
54
+ --text-32: 32px;
55
+ --leading-32: 40px;
56
+ /* 40 */
57
+ --text-40: 40px;
58
+ --leading-40: 50px;
59
+
60
+ /* RADIUS */
61
+ --radius-20: 20px;
62
+
63
+ /* SHADOW */
64
+ --shadow-soft-light: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
65
+ --shadow-elevated: 0px 6px 30px 0px rgba(0, 0, 0, 0.08);
66
+ --shadow-subpop: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
67
+ }
68
+
69
+ .lightm {
70
+ --color-white-c: #000000;
71
+ --color-black-c: #ffffff;
72
+ }