diff --git a/src/App.jsx b/src/App.jsx
index 8592ed3..c608341 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -1430,9 +1430,21 @@ async function createNewChat() {
placeholder="Ask any question..."
maxRows={13}
/>
-
+
diff --git a/src/colorSchemes.js b/src/colorSchemes.js
index 7f0e217..124617e 100644
--- a/src/colorSchemes.js
+++ b/src/colorSchemes.js
@@ -43,10 +43,10 @@ const colorSchemes = {
'--panel': '#e0ffe0',
'--text': '#1a1a1a',
'--muted': '#72a272ff',
- '--accent': '#8e9f38ff',
+ '--accent': '#deef88',
'--border': '#a0c0a0',
'--input-bg': '#ffffff',
- '--user-msg-bg': '#f8f7adff',
+ '--user-msg-bg': '#f8f7ad',
'--assistant-msg-bg': '#f5fff5',
'--active-bg': 'rgba(104, 159, 56, 0.2)',
'--hover-bg': 'rgba(104, 159, 56, 0.1)',
diff --git a/src/styles.css b/src/styles.css
index db39da1..c32cdca 100644
--- a/src/styles.css
+++ b/src/styles.css
@@ -892,6 +892,7 @@ input:checked + .slider:before {
/* Web search toggle */
+/*
.websearch-toggle {
display: inline-flex;
align-items: center;
@@ -905,6 +906,51 @@ input:checked + .slider:before {
}
.websearch-toggle svg { width: 16px; height: 16px; }
.websearch-toggle.active { outline: 2px solid var(--accent); }
+*/
+/* Icon-only Websearch toggle */
+.websearch-toggle {
+ background: transparent;
+ border: 0;
+ padding: 0; /* icon-only */
+ margin: 0 .1rem 0 0;
+ line-height: 0; /* collapse inline space */
+ display: inline-flex;
+ align-items: center;
+ justify-content: center;
+ cursor: pointer;
+ position: relative;
+ top: -7.5px;
+ color: var(--muted); /* inactive color */
+ box-shadow: none; /* no glow */
+ outline: none; /* remove default outline */
+ -webkit-tap-highlight-color: transparent;
+}
+
+.websearch-toggle svg {
+ width: 20px;
+ height: 20px;
+ pointer-events: none;
+}
+
+/* Active state = accent color */
+.websearch-toggle.active {
+ color: var(--accent);
+}
+
+/*
+.websearch-toggle:hover {
+ color: var(--accent);
+}
+*/
+
+/* Keep focus minimal (no glow) but still visible if you want a tiny underline instead of glow: */
+.websearch-toggle:focus,
+.websearch-toggle:focus-visible {
+ outline: none;
+ box-shadow: none;
+}
+
+
.msg-sources { margin-top: 8px; font-size: 12px; color: var(--muted); }
.msg-sources a { color: var(--accent); text-decoration: none; margin-right: 8px; }
.msg-sources a:hover { text-decoration: underline; }