diff --git a/frontend/index.html b/frontend/index.html
index c3c84b1..70c78e1 100644
--- a/frontend/index.html
+++ b/frontend/index.html
@@ -8,12 +8,12 @@
href="https://assets.jdbnet.co.uk/projects/ssh.png"
/>
-
+
SSH
diff --git a/frontend/src/components/TabContent.vue b/frontend/src/components/TabContent.vue
index a3359bb..5a0ff33 100644
--- a/frontend/src/components/TabContent.vue
+++ b/frontend/src/components/TabContent.vue
@@ -79,12 +79,13 @@ onMounted(async () => {
term = new Terminal({
cursorBlink: true,
- fontFamily: "IBM Plex Mono, monospace",
+ fontFamily: "DM Mono, ui-monospace, monospace",
fontSize: 14,
theme: {
- background: "#0a0e12",
- foreground: "#e2e8f0",
- cursor: "#3d9aed",
+ background: "#0d1117",
+ foreground: "#e6edf3",
+ cursor: "#1ebe8a",
+ selectionBackground: "rgba(30, 190, 138, 0.3)",
},
});
fit = new FitAddon();
@@ -185,7 +186,7 @@ watch(
diff --git a/frontend/tailwind.config.js b/frontend/tailwind.config.js
index 05ba6f6..0843dc9 100644
--- a/frontend/tailwind.config.js
+++ b/frontend/tailwind.config.js
@@ -5,18 +5,28 @@ export default {
extend: {
colors: {
surface: {
- DEFAULT: "#0f1419",
- raised: "#151c24",
- overlay: "#1a232e",
+ DEFAULT: "#0d1117",
+ raised: "#161b22",
+ overlay: "#21262d",
},
accent: {
- DEFAULT: "#3d9aed",
- muted: "#2a6fa3",
+ DEFAULT: "#1ebe8a",
+ muted: "#16966b",
+ },
+ slate: {
+ 200: "#e6edf3",
+ 300: "#c9d1d9",
+ 400: "#8b949e",
+ 500: "#6e7681",
+ 600: "#484f58",
+ 700: "#30363d",
+ 800: "#21262d",
+ 900: "#161b22",
},
},
fontFamily: {
- sans: ["IBM Plex Sans", "system-ui", "sans-serif"],
- mono: ["IBM Plex Mono", "ui-monospace", "monospace"],
+ sans: ["Space Grotesk", "system-ui", "sans-serif"],
+ mono: ["DM Mono", "ui-monospace", "monospace"],
},
},
},