Create style.css
Browse files
style.css
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
:root {
|
| 2 |
+
--zen-accent-h: 220; /* Change for color theme */
|
| 3 |
+
--zen-accent-s: 95%;
|
| 4 |
+
--zen-accent-l: 55%;
|
| 5 |
+
--zen-font: "Inter", "Segoe UI", Arial, sans-serif;
|
| 6 |
+
}
|
| 7 |
+
|
| 8 |
+
html, body, * {
|
| 9 |
+
font-family: var(--zen-font);
|
| 10 |
+
font-size: 1.08em;
|
| 11 |
+
}
|
| 12 |
+
|
| 13 |
+
.gr-button-primary {
|
| 14 |
+
background: hsl(var(--zen-accent-h) var(--zen-accent-s) var(--zen-accent-l));
|
| 15 |
+
color: white;
|
| 16 |
+
border: none;
|
| 17 |
+
}
|
| 18 |
+
.gr-button-primary:hover { filter: brightness(1.1); }
|
| 19 |
+
|
| 20 |
+
/* βββββ Chatbot bubbles βββββ */
|
| 21 |
+
.gr-chatbot .message.user {
|
| 22 |
+
background: hsla(var(--zen-accent-h) var(--zen-accent-s) calc(var(--zen-accent-l) + 25%), .18);
|
| 23 |
+
color: #fff; /* β NEW */
|
| 24 |
+
}
|
| 25 |
+
.gr-chatbot .message.bot {
|
| 26 |
+
background: hsla(var(--zen-accent-h) var(--zen-accent-s) calc(var(--zen-accent-l) + 15%), .13);
|
| 27 |
+
color: #fff; /* β NEW */
|
| 28 |
+
}
|
| 29 |
+
|
| 30 |
+
/* Make *everything* inside the bubbles white (links, bold, code, etc.) */
|
| 31 |
+
.gr-chatbot .message.user *,
|
| 32 |
+
.gr-chatbot .message.bot * {
|
| 33 |
+
color: #fff !important; /* β NEW */
|
| 34 |
+
}
|
| 35 |
+
|
| 36 |
+
.gr-image, .gr-plot {
|
| 37 |
+
border-radius: 12px;
|
| 38 |
+
box-shadow: 0 4px 16px rgba(0,0,0,.07);
|
| 39 |
+
margin-top: 6px;
|
| 40 |
+
}
|
| 41 |
+
|
| 42 |
+
.gr-textbox, .gr-chatbot {
|
| 43 |
+
border-radius: 8px;
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
body {
|
| 47 |
+
background: #f7fafe;
|
| 48 |
+
}
|
| 49 |
+
/* Blue header text β affects only the element with id="zen-header" */
|
| 50 |
+
#zen-header { color: #1e6cff; } /* adjust the hex if you want a different blue */
|