Spaces:
Running
Running
Upload 3 files
Browse files- .gitattributes +1 -0
- public/avatars/assistant.png +3 -0
- public/avatars/user.png +0 -0
- public/theme.json +70 -0
.gitattributes
CHANGED
|
@@ -34,3 +34,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
public/agent-avatar.png filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
public/agent-avatar.png filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
public/avatars/assistant.png filter=lfs diff=lfs merge=lfs -text
|
public/avatars/assistant.png
ADDED
|
|
Git LFS Details
|
public/avatars/user.png
ADDED
|
|
public/theme.json
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"custom_fonts": [
|
| 3 |
+
"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap"
|
| 4 |
+
],
|
| 5 |
+
"variables": {
|
| 6 |
+
"light": {
|
| 7 |
+
"--font-sans": "'Inter', sans-serif",
|
| 8 |
+
"--font-mono": "source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace",
|
| 9 |
+
"--background": "0 0% 98%",
|
| 10 |
+
"--foreground": "0 0% 10%",
|
| 11 |
+
"--card": "0 0% 100%",
|
| 12 |
+
"--card-foreground": "0 0% 10%",
|
| 13 |
+
"--popover": "0 0% 100%",
|
| 14 |
+
"--popover-foreground": "0 0% 10%",
|
| 15 |
+
"--primary": "0 0% 10%",
|
| 16 |
+
"--primary-foreground": "0 0% 100%",
|
| 17 |
+
"--secondary": "0 0% 96%",
|
| 18 |
+
"--secondary-foreground": "0 0% 15%",
|
| 19 |
+
"--muted": "0 0% 93%",
|
| 20 |
+
"--muted-foreground": "0 0% 40%",
|
| 21 |
+
"--accent": "0 0% 95%",
|
| 22 |
+
"--accent-foreground": "0 0% 15%",
|
| 23 |
+
"--destructive": "0 84% 60%",
|
| 24 |
+
"--destructive-foreground": "0 0% 98%",
|
| 25 |
+
"--border": "0 0% 88%",
|
| 26 |
+
"--input": "0 0% 88%",
|
| 27 |
+
"--ring": "0 0% 20%",
|
| 28 |
+
"--radius": "0.75rem",
|
| 29 |
+
"--sidebar-background": "0 0% 97%",
|
| 30 |
+
"--sidebar-foreground": "0 0% 25%",
|
| 31 |
+
"--sidebar-primary": "0 0% 12%",
|
| 32 |
+
"--sidebar-primary-foreground": "0 0% 98%",
|
| 33 |
+
"--sidebar-accent": "0 0% 94%",
|
| 34 |
+
"--sidebar-accent-foreground": "0 0% 15%",
|
| 35 |
+
"--sidebar-border": "0 0% 90%",
|
| 36 |
+
"--sidebar-ring": "0 0% 30%"
|
| 37 |
+
},
|
| 38 |
+
"dark": {
|
| 39 |
+
"--font-sans": "'Inter', sans-serif",
|
| 40 |
+
"--font-mono": "source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace",
|
| 41 |
+
"--background": "0 0% 6%",
|
| 42 |
+
"--foreground": "0 0% 95%",
|
| 43 |
+
"--card": "0 0% 12%",
|
| 44 |
+
"--card-foreground": "0 0% 95%",
|
| 45 |
+
"--popover": "0 0% 12%",
|
| 46 |
+
"--popover-foreground": "0 0% 95%",
|
| 47 |
+
"--primary": "0 0% 95%",
|
| 48 |
+
"--primary-foreground": "0 0% 8%",
|
| 49 |
+
"--secondary": "0 0% 15%",
|
| 50 |
+
"--secondary-foreground": "0 0% 90%",
|
| 51 |
+
"--muted": "0 0% 18%",
|
| 52 |
+
"--muted-foreground": "0 0% 60%",
|
| 53 |
+
"--accent": "0 0% 20%",
|
| 54 |
+
"--accent-foreground": "0 0% 90%",
|
| 55 |
+
"--destructive": "0 75% 50%",
|
| 56 |
+
"--destructive-foreground": "0 0% 95%",
|
| 57 |
+
"--border": "0 0% 20%",
|
| 58 |
+
"--input": "0 0% 20%",
|
| 59 |
+
"--ring": "0 0% 80%",
|
| 60 |
+
"--sidebar-background": "0 0% 4%",
|
| 61 |
+
"--sidebar-foreground": "0 0% 85%",
|
| 62 |
+
"--sidebar-primary": "0 0% 90%",
|
| 63 |
+
"--sidebar-primary-foreground": "0 0% 8%",
|
| 64 |
+
"--sidebar-accent": "0 0% 10%",
|
| 65 |
+
"--sidebar-accent-foreground": "0 0% 85%",
|
| 66 |
+
"--sidebar-border": "0 0% 18%",
|
| 67 |
+
"--sidebar-ring": "0 0% 70%"
|
| 68 |
+
}
|
| 69 |
+
}
|
| 70 |
+
}
|