@nasa-jpl/stellar-svelte 2.0.0-alpha.26 → 2.0.0-alpha.27

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 +3 -3
  2. package/src/theme.css +56 -0
package/package.json CHANGED
@@ -42,7 +42,7 @@
42
42
  "!dist/**/*.test.*",
43
43
  "!dist/**/*.spec.*",
44
44
  "tailwind.config.ts",
45
- "theme.css",
45
+ "src/theme.css",
46
46
  "package.json"
47
47
  ],
48
48
  "license": "ISC",
@@ -70,6 +70,6 @@
70
70
  "svelte": "./dist/index.js",
71
71
  "type": "module",
72
72
  "types": "./dist/index.d.ts",
73
- "version": "2.0.0-alpha.26",
74
- "gitHead": "b2819fbf61ba6e77b11a849d67d6b0df9f6babd8"
73
+ "version": "2.0.0-alpha.27",
74
+ "gitHead": "44e28dc7c4f575eb34d519734b966f7010871730"
75
75
  }
package/src/theme.css ADDED
@@ -0,0 +1,56 @@
1
+ @layer base {
2
+ :root {
3
+ --background: 0 0% 100%;
4
+ --foreground: 222.2 84% 4.9%;
5
+ --muted: 210 40% 96.1%;
6
+ --muted-foreground: 215.4 16.3% 46.9%;
7
+ --popover: 0 0% 100%;
8
+ --popover-foreground: 222.2 84% 4.9%;
9
+ --card: 0 0% 100%;
10
+ --card-foreground: 222.2 84% 4.9%;
11
+ --border: 214.3 31.8% 91.4%;
12
+ --input: 214.3 31.8% 91.4%;
13
+ --primary: 222.2 47.4% 11.2%;
14
+ --primary-foreground: 210 40% 98%;
15
+ --secondary: 210 40% 96.1%;
16
+ --secondary-foreground: 222.2 47.4% 11.2%;
17
+ --accent: 210 40% 96.1%;
18
+ --accent-foreground: 222.2 47.4% 11.2%;
19
+ --destructive: 0 72.2% 50.6%;
20
+ --destructive-foreground: 210 40% 98%;
21
+ --ring: 222.2 84% 4.9%;
22
+ --radius: 4px;
23
+ }
24
+
25
+ .dark {
26
+ --background: 222.2 84% 4.9%;
27
+ --foreground: 210 40% 98%;
28
+ --muted: 217.2 32.6% 17.5%;
29
+ --muted-foreground: 215 20.2% 65.1%;
30
+ --popover: 222.2 84% 4.9%;
31
+ --popover-foreground: 210 40% 98%;
32
+ --card: 222.2 84% 4.9%;
33
+ --card-foreground: 210 40% 98%;
34
+ --border: 217.2 32.6% 17.5%;
35
+ --input: 217.2 32.6% 17.5%;
36
+ --primary: 210 40% 98%;
37
+ --primary-foreground: 222.2 47.4% 11.2%;
38
+ --secondary: 217.2 32.6% 17.5%;
39
+ --secondary-foreground: 210 40% 98%;
40
+ --accent: 217.2 32.6% 17.5%;
41
+ --accent-foreground: 210 40% 98%;
42
+ --destructive: 0 62.8% 30.6%;
43
+ --destructive-foreground: 210 40% 98%;
44
+ --ring: 0 0% 83.1%;
45
+ }
46
+ }
47
+
48
+ @layer base {
49
+ * {
50
+ @apply border-border;
51
+ }
52
+
53
+ body {
54
+ @apply bg-background text-foreground;
55
+ }
56
+ }