Skip to content

Commit

Permalink
add green theme and image; update version to 0.5.0; update changelog …
Browse files Browse the repository at this point in the history
…and readme
  • Loading branch information
josereia committed Apr 28, 2024
1 parent 03de907 commit 5ba0da3
Show file tree
Hide file tree
Showing 5 changed files with 79 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.5.0

- Add green theme

## 0.4.0

- Add purple theme
Expand Down
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,23 @@ Glass themes with color oprions for [Zed Code Editor](https://zed.dev/).
- Purple theme
![purple theme image](./assets/purple.png)

- Green theme
![green theme image](./assets/green.png)

## Installation

- Manual: Copy the file ./themes/softglass.json to the directory: ~/.config/zed/themes

```bash
yes | cp -rf ./themes/softglass.json ~/.config/zed/themes/softglass.json
```

- Auto: In the root of the project, using the GNU/Make utility run the following command:

```bash
make install
```

## Contacts

- E-mail: [[email protected]](mailto:[email protected])
Binary file added assets/green.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion extension.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
id = "softglass"
name = "SoftGlass Themes"
version = "0.4.0"
version = "0.5.0"
schema_version = 1
authors = ["João Sereia (SoftYes TI) <[email protected]>"]
description = "Glass themes with color options."
Expand Down
57 changes: 57 additions & 0 deletions themes/softglass.json
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,63 @@
"scrollbar.thumb.hover_background": "#8241C4CC",
"link_text.hover": "#8241C4CC"
}
},
{
"name": "SoftGlass Green",
"appearance": "dark",
"style": {
"background": "#00000099",
"background.appearance": "blurred",
"error": "#EC4A4ACC",
"warning": "#ECCE4ACC",
"created": "#28A700CC",
"deleted": "#EC4A4ACC",
"conflict": "#ECCE4ACC",
"success": "#5AEC4ACC",
"info": "#28A700CC",
"modified": "#ECCE4ACC",
"predictive": "#28A700CC",
"hint": "#FFFFFF80",
"hidden": "#FFFFFF1A",
"unreachable": "#EC4A4ACC",
"text": "#FFFFFF",
"text.muted": "#FFFFFFCC",
"text.accent": "#28A700CC",
"border": "#FFFFFF1A",
"border.focused": "#28A700CC",
"border.selected": "#28A700CC",
"border.variant": "#FFFFFF1A",
"icon": "#FFFFFF",
"icon.muted": "#FFFFFF1A",
"icon.accent": "#28A700CC",
"editor.background": "#00000000",
"editor.gutter.background": "#00000000",
"editor.active_line_number": "#28A700",
"editor.invisible": "#28A700CC",
"editor.foreground": "#FFFFFF",
"status_bar.background": "#00000000",
"title_bar.background": "#00000000",
"toolbar.background": "#00000000",
"tab_bar.background": "#00000000",
"tab.active_background": "#28A700CC",
"tab.inactive_background": "#00000000",
"editor.active_line.background": "#FFFFFF1A",
"elevated_surface.background": "#000000E6",
"terminal.background": "#00000000",
"terminal.foreground": "#FFFFFF",
"terminal.ansi.blue": "#28A700CC",
"terminal.ansi.cyan": "#28A700",
"terminal.ansi.red": "#EC4A4A",
"terminal.ansi.green": "#5AEC4A",
"terminal.ansi.yellow": "#ECCE4AC",
"panel.background": "#00000000",
"panel.focused_border": "#FFFFFF33",
"pane.focused_border": "#28A700CC",
"element.background": "#0000001A",
"scrollbar_thumb.background": "#FFFFFF1A",
"scrollbar.thumb.hover_background": "#28A700CC",
"link_text.hover": "#28A700CC"
}
}
]
}

0 comments on commit 5ba0da3

Please sign in to comment.