Skip to content

Commit

Permalink
Minimap colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Ike Ku committed Dec 24, 2017
1 parent 57a2aa3 commit 57cc085
Show file tree
Hide file tree
Showing 8 changed files with 1,544 additions and 17 deletions.
8 changes: 4 additions & 4 deletions ayu-dark.sublime-theme
Expand Up @@ -968,22 +968,22 @@
{
"class": "minimap_control",
"settings": ["always_show_minimap_viewport"],
"viewport_color": [5, 6, 8],
"viewport_opacity": 0.2
"viewport_color": [101, 95, 82],
"viewport_opacity": 0.3
},

{
"class": "minimap_control",
"settings": ["!always_show_minimap_viewport"],
"viewport_color": [5, 6, 8],
"viewport_color": [101, 95, 82],
"viewport_opacity": { "target": 0, "speed": 4.0, "interpolation": "smoothstep" }
},

{
"class": "minimap_control",
"attributes": ["hover"],
"settings": ["!always_show_minimap_viewport"],
"viewport_opacity": { "target": 0.2, "speed": 4.0, "interpolation": "smoothstep" }
"viewport_opacity": { "target": 0.3, "speed": 4.0, "interpolation": "smoothstep" }
},


Expand Down
8 changes: 4 additions & 4 deletions ayu-light.sublime-theme
Expand Up @@ -968,22 +968,22 @@
{
"class": "minimap_control",
"settings": ["always_show_minimap_viewport"],
"viewport_color": [225, 225, 225],
"viewport_opacity": 0.2
"viewport_color": [157, 162, 166],
"viewport_opacity": 0.3
},

{
"class": "minimap_control",
"settings": ["!always_show_minimap_viewport"],
"viewport_color": [225, 225, 225],
"viewport_color": [157, 162, 166],
"viewport_opacity": { "target": 0, "speed": 4.0, "interpolation": "smoothstep" }
},

{
"class": "minimap_control",
"attributes": ["hover"],
"settings": ["!always_show_minimap_viewport"],
"viewport_opacity": { "target": 0.2, "speed": 4.0, "interpolation": "smoothstep" }
"viewport_opacity": { "target": 0.3, "speed": 4.0, "interpolation": "smoothstep" }
},


Expand Down
8 changes: 4 additions & 4 deletions ayu-mirage.sublime-theme
Expand Up @@ -968,22 +968,22 @@
{
"class": "minimap_control",
"settings": ["always_show_minimap_viewport"],
"viewport_color": [20, 23, 31],
"viewport_opacity": 0.2
"viewport_color": [102, 115, 128],
"viewport_opacity": 0.3
},

{
"class": "minimap_control",
"settings": ["!always_show_minimap_viewport"],
"viewport_color": [20, 23, 31],
"viewport_color": [102, 115, 128],
"viewport_opacity": { "target": 0, "speed": 4.0, "interpolation": "smoothstep" }
},

{
"class": "minimap_control",
"attributes": ["hover"],
"settings": ["!always_show_minimap_viewport"],
"viewport_opacity": { "target": 0.2, "speed": 4.0, "interpolation": "smoothstep" }
"viewport_opacity": { "target": 0.3, "speed": 4.0, "interpolation": "smoothstep" }
},


Expand Down
4 changes: 2 additions & 2 deletions src/templates/sublime.ui.json
Expand Up @@ -969,7 +969,7 @@
"class": "minimap_control",
"settings": ["always_show_minimap_viewport"],
"viewport_color": ["{ui.minimap.rgb}"],
"viewport_opacity": 0.2
"viewport_opacity": 0.3
},

{
Expand All @@ -983,7 +983,7 @@
"class": "minimap_control",
"attributes": ["hover"],
"settings": ["!always_show_minimap_viewport"],
"viewport_opacity": { "target": 0.2, "speed": 4.0, "interpolation": "smoothstep" }
"viewport_opacity": { "target": 0.3, "speed": 4.0, "interpolation": "smoothstep" }
},


Expand Down
2 changes: 1 addition & 1 deletion src/themes/dark.js
Expand Up @@ -32,7 +32,7 @@ const ui = {
icon: common.ui.fade55,
scrollbar: { puck: $`FFFFFF` },
separator: common.bg.darken36,
minimap: common.bg.darken70,
minimap: common.fg.darken50,
opacity: 1.0
}

Expand Down
2 changes: 1 addition & 1 deletion src/themes/light.js
Expand Up @@ -32,7 +32,7 @@ const ui = {
icon: common.ui.fade60,
scrollbar: { puck: $`000000` },
separator: common.bg.darken5,
minimap: common.bg.darken10,
minimap: common.ui,
opacity: 1
}

Expand Down
2 changes: 1 addition & 1 deletion src/themes/mirage.js
Expand Up @@ -32,7 +32,7 @@ const ui = {
icon: common.ui.fade55,
scrollbar: { puck: $`FFFFFF` },
separator: common.bg.darken20,
minimap: common.bg.darken40,
minimap: common.ui,
opacity: 1.0
}

Expand Down

0 comments on commit 57cc085

Please sign in to comment.