Skip to content

Commit

Permalink
Sublime Text 2 interoperability
Browse files Browse the repository at this point in the history
  • Loading branch information
dempfi committed Sep 28, 2021
1 parent bde5875 commit e347dbb
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 37 deletions.
20 changes: 10 additions & 10 deletions ayu-dark.sublime-theme
Original file line number Diff line number Diff line change
Expand Up @@ -588,30 +588,30 @@
"class": "tab_control",
"attributes": [
"selected",
"highlighted"
"!highlighted"
],
"settings": [
"ui_separator"
],
"layer1.opacity": {
"target": 1,
"speed": 1,
"interpolation": "smoothstep"
},
"layer1.tint": "#10141c",
"layer1.opacity": 1,
"layer1.tint": "#0d1017",
"layer2.opacity": 1
},
{
"class": "tab_control",
"attributes": [
"selected",
"!highlighted"
"highlighted"
],
"settings": [
"ui_separator"
],
"layer1.opacity": 1,
"layer1.tint": "#0d1017",
"layer1.opacity": {
"target": 1,
"speed": 1,
"interpolation": "smoothstep"
},
"layer1.tint": "#10141c",
"layer2.opacity": 1
},
{
Expand Down
20 changes: 10 additions & 10 deletions ayu-light.sublime-theme
Original file line number Diff line number Diff line change
Expand Up @@ -588,30 +588,30 @@
"class": "tab_control",
"attributes": [
"selected",
"highlighted"
"!highlighted"
],
"settings": [
"ui_separator"
],
"layer1.opacity": {
"target": 1,
"speed": 1,
"interpolation": "smoothstep"
},
"layer1.tint": "#fcfcfc",
"layer1.opacity": 1,
"layer1.tint": "#f8f9fa",
"layer2.opacity": 1
},
{
"class": "tab_control",
"attributes": [
"selected",
"!highlighted"
"highlighted"
],
"settings": [
"ui_separator"
],
"layer1.opacity": 1,
"layer1.tint": "#f8f9fa",
"layer1.opacity": {
"target": 1,
"speed": 1,
"interpolation": "smoothstep"
},
"layer1.tint": "#fcfcfc",
"layer2.opacity": 1
},
{
Expand Down
20 changes: 10 additions & 10 deletions ayu-mirage.sublime-theme
Original file line number Diff line number Diff line change
Expand Up @@ -588,30 +588,30 @@
"class": "tab_control",
"attributes": [
"selected",
"highlighted"
"!highlighted"
],
"settings": [
"ui_separator"
],
"layer1.opacity": {
"target": 1,
"speed": 1,
"interpolation": "smoothstep"
},
"layer1.tint": "#242936",
"layer1.opacity": 1,
"layer1.tint": "#1f2430",
"layer2.opacity": 1
},
{
"class": "tab_control",
"attributes": [
"selected",
"!highlighted"
"highlighted"
],
"settings": [
"ui_separator"
],
"layer1.opacity": 1,
"layer1.tint": "#1f2430",
"layer1.opacity": {
"target": 1,
"speed": 1,
"interpolation": "smoothstep"
},
"layer1.tint": "#242936",
"layer2.opacity": 1
},
{
Expand Down
3 changes: 2 additions & 1 deletion messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,6 @@
"6.0.2": "messages/6.0.2.md",
"6.0.3": "messages/6.0.3.md",
"6.1.0": "messages/6.1.0.md",
"6.1.1": "messages/6.1.1.md"
"6.1.1": "messages/6.1.1.md",
"6.1.2": "messages/6.1.2.md"
}
14 changes: 14 additions & 0 deletions messages/6.1.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
**ayu theme for Sublime Text 4**
https://github.com/dempfi/ayu/releases

# Version 6.1.2
- Add switch panel icon for Sublime Text 3 interoperability

# Version 6.1.1
- mdpopups have proper background matching ayu popups

# Version 6.1.0
- More prominent autocomplete selection and kind badges
- Add distinctive type icons to the command palette and go to windows
- Raise the contrast of the dark theme
- All editor popups match the overall theme aesthetic
12 changes: 6 additions & 6 deletions src/templates/ui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -411,17 +411,17 @@ export default (scheme: Scheme, kind: string) => [
"layer0.opacity": 1.0
},
{
"class": "tab_control", "attributes": ["selected", "highlighted"],
"class": "tab_control", "attributes": ["selected", "!highlighted"],
"settings": ["ui_separator"],
"layer1.opacity": { "target": 1, "speed": 1.0, "interpolation": "smoothstep" },
"layer1.tint": scheme.editor.bg.hex(),
"layer1.opacity": 1,
"layer1.tint": scheme.ui.bg.hex(),
"layer2.opacity": 1,
},
{
"class": "tab_control", "attributes": ["selected", "!highlighted"],
"class": "tab_control", "attributes": ["selected", "highlighted"],
"settings": ["ui_separator"],
"layer1.opacity": 1,
"layer1.tint": scheme.ui.bg.hex(),
"layer1.opacity": { "target": 1, "speed": 1.0, "interpolation": "smoothstep" },
"layer1.tint": scheme.editor.bg.hex(),
"layer2.opacity": 1,
},

Expand Down

0 comments on commit e347dbb

Please sign in to comment.