diff --git a/THEMES.md b/THEMES.md index b1b2952..3960683 100644 --- a/THEMES.md +++ b/THEMES.md @@ -38,7 +38,7 @@ ### Alucard -![Alucard theme screenshot](assets/images/alucard-theme.png) +![Dracula Light theme screenshot](assets/images/dracula-light-theme.png) # Contributing custom themes @@ -58,17 +58,9 @@ 'volcano.css', 'catppuccin-mocha.css', 'catppuccin-latte.css', -"hypermind.css", -"hypermind-classic.css", -"tokyo-night.css", -"nord-dark.css", -"solarized-light.css", -"volcano.css", -"catppuccin-mocha.css", -"catppuccin-latte.css", -"dracula.css", -"dracula-light.css", -"new-theme.css" // always add to the end of the list + 'dracula.css', + 'dracula-light.css', + 'new-theme.css' // always add to the end of the list ]; ``` 4. Change the colors as you desire. Reference [`index.html`](public/index.html) and [`style.css`](public/style.css) as needed. diff --git a/assets/images/alucard-theme.png b/assets/images/alucard-theme.png deleted file mode 100644 index 1634bd8..0000000 Binary files a/assets/images/alucard-theme.png and /dev/null differ diff --git a/assets/images/dracula-light-theme.png b/assets/images/dracula-light-theme.png new file mode 100644 index 0000000..b482944 Binary files /dev/null and b/assets/images/dracula-light-theme.png differ diff --git a/assets/images/dracula-theme.png b/assets/images/dracula-theme.png index cf55a17..15fc571 100644 Binary files a/assets/images/dracula-theme.png and b/assets/images/dracula-theme.png differ diff --git a/docker-compose.dev.yml b/docker-compose.dev.yml index 8871a5a..2a190d6 100644 --- a/docker-compose.dev.yml +++ b/docker-compose.dev.yml @@ -3,7 +3,11 @@ services: build: . image: hypermind container_name: hypermind - network_mode: host + #network_mode: host + ports: + - "3000:3000" restart: unless-stopped environment: - PORT=3000 + - ENABLE_CHAT=true + - ENABLE_MAP=true diff --git a/public/themes/dracula-light.css b/public/themes/dracula-light.css index 8cdb017..049a4ff 100644 --- a/public/themes/dracula-light.css +++ b/public/themes/dracula-light.css @@ -32,12 +32,12 @@ --color-terminal-shadow: rgba(0, 0, 0, 0.3); --color-terminal-input-text: #036a96; --color-terminal-input-divider: #cfcfde; - --color-terminal-output-message: #14710a; + --color-terminal-output-message: #3d3d3d; --color-terminal-tab-arrow: #a34d14; --color-terminal-tab-arrow-hover: #036a96; --color-terminal-tab-bg-hover: #cfcfde; - --color-terminal-status-message: #6c664b; - --color-terminal-scrollbar: #644ac9; - --color-terminal-scrollbar-hover: #036a96; + --color-terminal-status-message: #8a8a8a; + --color-terminal-scrollbar: #b8b8b8; + --color-terminal-scrollbar-hover: #8a8a8a; --color-terminal-text-default: #a34d14; }