diff --git a/CHANGELOG.md b/CHANGELOG.md index 4df228a..3e0ebe5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.4.0 + +- Add purple theme + ## 0.3.0 - Add orange theme diff --git a/README.md b/README.md index 05b13d0..6d76d4f 100644 --- a/README.md +++ b/README.md @@ -8,10 +8,13 @@ Glass themes with color oprions for [Zed Code Editor](https://zed.dev/). ![cyan theme image](./assets/cyan.png) - Pink theme - ![cyan theme image](./assets/pink.png) + ![pink theme image](./assets/pink.png) - Orange theme - ![cyan theme image](./assets/orange.png) + ![orange theme image](./assets/orange.png) + +- Purple theme + ![purple theme image](./assets/purple.png) ## Contacts diff --git a/assets/purple.png b/assets/purple.png new file mode 100644 index 0000000..2c9c00e Binary files /dev/null and b/assets/purple.png differ diff --git a/extension.toml b/extension.toml index 30fb544..29d584e 100644 --- a/extension.toml +++ b/extension.toml @@ -1,6 +1,6 @@ id = "softglass" name = "SoftGlass Themes" -version = "0.3.0" +version = "0.4.0" schema_version = 1 authors = ["João Sereia (SoftYes TI) "] description = "Glass themes with color options." diff --git a/themes/softglass.json b/themes/softglass.json index 26017c2..d6d5cd9 100644 --- a/themes/softglass.json +++ b/themes/softglass.json @@ -173,6 +173,63 @@ "scrollbar.thumb.hover_background": "#E43831CC", "link_text.hover": "#E43831CC" } + }, + { + "name": "SoftGlass Purple", + "appearance": "dark", + "style": { + "background": "#00000099", + "background.appearance": "blurred", + "error": "#EC4A4ACC", + "warning": "#ECCE4ACC", + "created": "#8241C4CC", + "deleted": "#EC4A4ACC", + "conflict": "#ECCE4ACC", + "success": "#5AEC4ACC", + "info": "#8241C4CC", + "modified": "#ECCE4ACC", + "predictive": "#8241C4CC", + "hint": "#FFFFFF80", + "hidden": "#FFFFFF1A", + "unreachable": "#EC4A4ACC", + "text": "#FFFFFF", + "text.muted": "#FFFFFFCC", + "text.accent": "#8241C4CC", + "border": "#FFFFFF1A", + "border.focused": "#8241C4CC", + "border.selected": "#8241C4CC", + "border.variant": "#FFFFFF1A", + "icon": "#FFFFFF", + "icon.muted": "#FFFFFF1A", + "icon.accent": "#8241C4CC", + "editor.background": "#00000000", + "editor.gutter.background": "#00000000", + "editor.active_line_number": "#8241C4", + "editor.invisible": "#8241C4CC", + "editor.foreground": "#FFFFFF", + "status_bar.background": "#00000000", + "title_bar.background": "#00000000", + "toolbar.background": "#00000000", + "tab_bar.background": "#00000000", + "tab.active_background": "#8241C4CC", + "tab.inactive_background": "#00000000", + "editor.active_line.background": "#FFFFFF1A", + "elevated_surface.background": "#000000E6", + "terminal.background": "#00000000", + "terminal.foreground": "#FFFFFF", + "terminal.ansi.blue": "#8241C4CC", + "terminal.ansi.cyan": "#8241C4", + "terminal.ansi.red": "#EC4A4A", + "terminal.ansi.green": "#5AEC4A", + "terminal.ansi.yellow": "#ECCE4AC", + "panel.background": "#00000000", + "panel.focused_border": "#FFFFFF33", + "pane.focused_border": "#8241C4CC", + "element.background": "#0000001A", + "scrollbar_thumb.background": "#FFFFFF1A", + "scrollbar.thumb.hover_background": "#8241C4CC", + "link_text.hover": "#8241C4CC" + } } ] }