Skip to content

Commit

Permalink
Add release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ike Ku committed Nov 3, 2016
1 parent 41ba3b8 commit a7e674e
Show file tree
Hide file tree
Showing 10 changed files with 90 additions and 42 deletions.
51 changes: 33 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![ayu](http://i.imgur.com/h56iGcG.png)
![ayu](http://i.imgur.com/b3etBQX.png)

`ayu` is a simple theme with bright colors and comes in two versions — *dark* and *light* for all day long comfortable work.

Expand All @@ -9,18 +9,21 @@
# Screenshots

Light with `ui_separator` option on
![Light with separators on](http://i.imgur.com/vidbstL.png)
![Light with separators on](http://i.imgur.com/AJbChTB.png)

Dark with `ui_separator` option off
![Dark with separators off](http://i.imgur.com/r1mqHyx.png)
🎉**NEW**🎉 Mirage with `ui_separator` option off
![Mirage with separators off](http://i.imgur.com/3kkWv8k.png)

Dark with `ui_separator` option on
![Dark with separators on](http://i.imgur.com/bbH1K5O.png)

# Settings

```json
"ui_separator": true, // separators between panels
"ui_font_size_small": true, // smaller UI font size(sidebar, statusbar etc)
"ui_big_tabs": true // increased tab height
"ui_big_tabs": true, // increased tab height
"ui_fix_tab_labels": true // to fix tab labels if they look not right
```

# Installation
Expand All @@ -38,39 +41,51 @@ You can install `ayu` via [Package Control](https://packagecontrol.io/).
# Activation
## Sublime Text 3
### Skins package
[Skins](https://packagecontrol.io/packages/Skins) provides a simple and efficient way to change themes, save your own presets and quickly try out new looks. Activation is as simple as opening up the command palette, running `Select Skin` and choosing `Ayu - Dark` or `Ayu - Light` from the list.
[Skins](https://packagecontrol.io/packages/Skins) provides a simple and efficient way to change themes, save your own presets and quickly try out new looks. Activation is as simple as opening up the command palette, running `Select Skin` and choosing `Ayu - Dark` or `Ayu - Light` from the list.

### Normal way
Add these lines to your user settings *Preferences > Setting - User*:

For dark theme:
```json
"theme": "ayu.sublime-theme",
"color_scheme": "Packages/ayu/ayu.tmTheme",
```

For light theme:
```json
"theme": "ayu-light.sublime-theme",
"color_scheme": "Packages/ayu/ayu-light.tmTheme",
```

## Sublime Text 2
Add these lines to your user settings *Preferences > Setting - User*:

_Sublime Text 2 version may have some glitches, if you notice something, please file an issue._
For mirage theme:
```json
"theme": "ayu-mirage.sublime-theme",
"color_scheme": "Packages/ayu/ayu-mirage.tmTheme",
```

For dark theme:
```json
"theme": "ayu2.sublime-theme",
"color_scheme": "Packages/ayu/ayu.tmTheme",
"theme": "ayu-dark.sublime-theme",
"color_scheme": "Packages/ayu/ayu-dark.tmTheme",
```

## Sublime Text 2
Add this lines to your user settings *Preferences > Setting - User*:

_Sublime Text 2 version may have some glitches, if you notice something, please file an issue._

For light theme:
```json
"theme": "ayu-light2.sublime-theme",
"color_scheme": "Packages/ayu/ayu-light.tmTheme",
```

For mirage theme:
```json
"theme": "ayu-mirage2.sublime-theme",
"color_scheme": "Packages/ayu/ayu-mirage.tmTheme",
```

For dark theme:
```json
"theme": "ayu-dark2.sublime-theme",
"color_scheme": "Packages/ayu/ayu-dark.tmTheme",
```

**NOTE:** Restart Sublime Text after activation of the theme to avoid any glitches.

4 changes: 2 additions & 2 deletions ayu-dark.sublime-theme
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@

{
"class": "sidebar_container",
"content_margin": [0, 5, 0, 0],
"content_margin": [0, -10, 0, 0],
"layer0.opacity": 1,
"layer0.tint": [15, 20, 25]
},
Expand All @@ -552,7 +552,7 @@

{
"class": "sidebar_heading",
"color": [62, 75, 89, 150],
"color": [15, 20, 25],
"font.face": "Roboto mono",
"font.bold": true,
"font.size": 11
Expand Down
6 changes: 3 additions & 3 deletions ayu-light.sublime-theme
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
"layer0.texture": "ayu/assets/overlay-shadow.png",
"layer0.inner_margin": [25, 45, 25, 35],
"layer0.opacity": 1.0,
"layer0.tint": [0, 0, 0],
"layer0.tint": [160, 160, 160],

"layer1.texture": "ayu/assets/overlay-bg.png",
"layer1.inner_margin": [25, 45, 25, 35],
Expand Down Expand Up @@ -528,7 +528,7 @@

{
"class": "sidebar_container",
"content_margin": [0, 5, 0, 0],
"content_margin": [0, -10, 0, 0],
"layer0.opacity": 1,
"layer0.tint": [250, 250, 250]
},
Expand All @@ -552,7 +552,7 @@

{
"class": "sidebar_heading",
"color": [130, 140, 153, 150],
"color": [250, 250, 250],
"font.face": "Roboto mono",
"font.bold": true,
"font.size": 11
Expand Down
2 changes: 1 addition & 1 deletion ayu-light2.sublime-theme
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
"layer0.texture": "ayu/assets/common/overlay-shadow.png",
"layer0.inner_margin": [25, 45, 25, 35],
"layer0.opacity": 1.0,
"layer0.tint": [0, 0, 0],
"layer0.tint": [160, 160, 160],

"layer1.texture": "ayu/assets/common/overlay-bg.png",
"layer1.inner_margin": [25, 45, 25, 35],
Expand Down
4 changes: 2 additions & 2 deletions ayu-mirage.sublime-theme
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@

{
"class": "sidebar_container",
"content_margin": [0, 5, 0, 0],
"content_margin": [0, -10, 0, 0],
"layer0.opacity": 1,
"layer0.tint": [33, 39, 51]
},
Expand All @@ -552,7 +552,7 @@

{
"class": "sidebar_heading",
"color": [96, 112, 128, 150],
"color": [33, 39, 51],
"font.face": "Roboto mono",
"font.bold": true,
"font.size": 11
Expand Down
31 changes: 19 additions & 12 deletions ayu.skins
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
{
"Ayu - Dark": {
"Preferences": {
"color_scheme": "Packages/ayu/ayu.tmTheme",
"theme": "ayu.sublime-theme",
}
},
"ayu light": {
"Preferences": {
"color_scheme": "Packages/ayu/ayu-light.tmTheme",
"theme": "ayu-light.sublime-theme",
}
},

"ayu mirage": {
"Preferences": {
"color_scheme": "Packages/ayu/ayu-mirage.tmTheme",
"theme": "ayu-mirage.sublime-theme",
}
},

"Ayu - Light": {
"Preferences": {
"color_scheme": "Packages/ayu/ayu-light.tmTheme",
"theme": "ayu-light.sublime-theme",
}
"ayu dark": {
"Preferences": {
"color_scheme": "Packages/ayu/ayu-dark.tmTheme",
"theme": "ayu-dark.sublime-theme",
}
}
}
}
3 changes: 2 additions & 1 deletion messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"1.3.0": "messages/1.3.0.txt",
"1.3.1": "messages/1.3.1.txt",
"1.3.2": "messages/1.3.2.txt",
"1.3.3": "messages/1.3.3.txt"
"1.3.3": "messages/1.3.3.txt",
"2.0.0": "messages/2.0.0.txt"
}
25 changes: 25 additions & 0 deletions messages/2.0.0.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
ayu theme for Sublime Text
https://github.com/dempfi/ayu/releases

Version 2.0.0
********************************************************************************

Changes:
* 🎨 💄 [NEW] Mirage theme 👻
activate with
```json
"theme": "ayu-mirage.sublime-theme",
"color_scheme": "Packages/ayu/ayu-mirage.tmTheme",
```
* [NEW] build system
* [NEW] Reduced most of the assets

* Renamed `ayu-dark`
use following settings for dark theme:
```json
"theme": "ayu-dark.sublime-theme",
"color_scheme": "Packages/ayu/ayu-dark.tmTheme",
```

* Fix for issue with cut tab labels
* Fix for issue with sidebar labels
4 changes: 2 additions & 2 deletions src/templates/sublime.ui.json
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@

{
"class": "sidebar_container",
"content_margin": [0, 5, 0, 0],
"content_margin": [0, -10, 0, 0],
"layer0.opacity": 1,
"layer0.tint": ["{common.bg.rgb}"]
},
Expand All @@ -552,7 +552,7 @@

{
"class": "sidebar_heading",
"color": ["{ui.fg.rgb}", 150],
"color": ["{common.bg.rgb}"],
"font.face": "Roboto mono",
"font.bold": true,
"font.size": 11
Expand Down
2 changes: 1 addition & 1 deletion src/themes/light.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ui:
fg: '828C99'
panel:
bg: FFFFFF
shadow: '000000'
shadow: 'A0A0A0'
path_fg: B0BEC5
row_bg: F5F5F5

Expand Down

0 comments on commit a7e674e

Please sign in to comment.