Light UI themes now work.

This commit is contained in:
Dayle Rees 2014-02-16 03:06:55 +00:00
parent 56a1928e5e
commit 1d72ee98fb
96 changed files with 2102 additions and 895 deletions

@ -110,7 +110,7 @@ See the documentation for your editor, this varies between each one!
### Sublime UI Themes
**WARNING**: These are work in progress. Light themes will not work. Some themes may look strange.
**WARNING**: These are work in progress. Some themes may look strange. Be sure to raise an issue though! :)
The Sublime UI themes are based on [Space Gray](http://kkga.github.io/spacegray/) by [kkga_](http://twitter.com/kkga_).

File diff suppressed because it is too large Load Diff

@ -31,5 +31,6 @@
"bracket_content": "#ffffff",
"invalid_foreground": "#f8f8f0",
"invalid_background": "#00a8c6",
"docblock": "#4d6785"
"docblock": "#4d6785",
"ui_first": "#267fb5"
}

@ -4,7 +4,7 @@
"description": "Github.",
"author": "Dayle Rees",
"slug": "github",
"type": "dark"
"type": "light"
},
"background": "#ffffff",

@ -31,5 +31,6 @@
"invalid_foreground": "#f8f8f0",
"invalid_background": "#00a8c6",
"docblock": "#4d6785",
"variables": "#f1f6fb"
"variables": "#f1f6fb",
"ui_first": "#267fb5"
}

@ -31,5 +31,6 @@
"bracket_content": "#f66153",
"invalid_foreground": "#f8f8f0",
"invalid_background": "#00a8c6",
"docblock": "#7d7d7d"
"docblock": "#7d7d7d",
"ui_bg": "#eeeeee"
}

@ -4,7 +4,7 @@
"description": "Spearmint.",
"author": "Dayle Rees",
"slug": "spearmint",
"type": "dark"
"type": "light"
},
"background": "#E1F0EE",

@ -30,5 +30,6 @@
"bracket_content": "#ffffff",
"invalid_foreground": "#f8f8f0",
"invalid_background": "#00a8c6",
"docblock": "#4d6785"
"docblock": "#4d6785",
"ui_first": "#267fb5"
}

@ -138,6 +138,9 @@ class Presenter
$this->twig->addFunction($function);
$function = new TwigFunction('ui', [$this, 'uiHelper']);
$this->twig->addFunction($function);
$colour = new \Raincolour\Twig\Globals\Colour($this->theme->get());
$this->twig->addGlobal('colour', $colour);
}
/**

@ -0,0 +1,115 @@
<?php
namespace Raincolour\Twig\Globals;
class Colour
{
/**
* Amount to brighten or darken the colour by.
*
* @var integer
*/
protected $amount = 0;
/**
* The hex colour being modified.
*
* @var string
*/
protected $hex ='#000000';
/**
* Array of colour values.
*
* @var array
*/
protected $values = [];
public function __construct(array $values)
{
$this->values = $values;
}
/**
* Find the first value.
*
* @return void
*/
public function first()
{
$params = func_get_args();
foreach ($params as $key) {
if (isset($this->values[$key])) {
$this->hex = $this->values[$key];
return $this;
}
}
return $this;
}
public function mod($amount)
{
$this->amount = $amount;
return $this;
}
public function get()
{
$hex = $this->hex;
$this->reset();
return $hex;
}
public function reset()
{
$this->hex = '#000000';
$this->amount = 0;
}
public function without()
{
$hex = $this->hex;
$this->reset();
return trim($hex, '#');
}
public function rgb($amount = null)
{
$amount = ($amount === null) ? $this->amount : $amount;
$hex = $this->without();
// Calculate RGB values.
if(strlen($hex) == 3) {
$r = hexdec(substr($hex,0,1).substr($hex,0,1));
$g = hexdec(substr($hex,1,1).substr($hex,1,1));
$b = hexdec(substr($hex,2,1).substr($hex,2,1));
} else {
$r = hexdec(substr($hex,0,2));
$g = hexdec(substr($hex,2,2));
$b = hexdec(substr($hex,4,2));
}
$r = $this->minMax($r + $amount);
$g = $this->minMax($g + $amount);
$b = $this->minMax($b + $amount);
$this->reset();
return "{$r}, {$g}, {$b}";
}
/**
* Helper to ensure RGB values don't wrap.
*
* @param int $value
* @return int
*/
public function minMax($value)
{
if ($value > 255) {
return 255;
} elseif ($value < 0) {
return 0;
}
return $value;
}
}

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [112, 128, 123] // 08
"layer0.tint": [33, 31, 30] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [132, 148, 143] // 08
"layer0.tint": [53, 51, 50] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [162, 167, 151] // 08
"layer0.tint": [165, 227, 208] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [185, 247, 228] // 08
"layer0.tint": [165, 227, 208] // 08
},
//
@ -750,7 +750,7 @@
"fg": [43, 41, 40], // 03
"match_fg": [23, 21, 20], // 04
"selected_fg": [193, 191, 190], // 03
"selected_match_fg": [162, 167, 151] // 04
"selected_match_fg": [112, 128, 123] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [80, 138, 170] // 08
"layer0.tint": [24, 29, 38] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [100, 158, 190] // 08
"layer0.tint": [44, 49, 58] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [106, 176, 163] // 08
"layer0.tint": [100, 174, 179] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [120, 194, 199] // 08
"layer0.tint": [100, 174, 179] // 08
},
//
@ -750,7 +750,7 @@
"fg": [34, 39, 48], // 03
"match_fg": [14, 19, 28], // 04
"selected_fg": [184, 189, 198], // 03
"selected_match_fg": [106, 176, 163] // 04
"selected_match_fg": [80, 138, 170] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [180, 183, 173] // 08
"layer0.tint": [42, 38, 38] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [200, 203, 193] // 08
"layer0.tint": [62, 58, 58] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [61, 142, 145] // 08
"layer0.tint": [247, 162, 27] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 182, 47] // 08
"layer0.tint": [247, 162, 27] // 08
},
//
@ -750,7 +750,7 @@
"fg": [52, 48, 48], // 03
"match_fg": [32, 28, 28], // 04
"selected_fg": [202, 198, 198], // 03
"selected_match_fg": [61, 142, 145] // 04
"selected_match_fg": [180, 183, 173] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [21, 184, 174] // 08
"layer0.tint": [255, 255, 255] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [41, 204, 194] // 08
"layer0.tint": [255, 255, 255] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [1, 124, 157] // 08
"layer0.tint": [21, 184, 174] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [41, 204, 194] // 08
"layer0.tint": [21, 184, 174] // 08
},
//
@ -750,7 +750,7 @@
"fg": [255, 255, 255], // 03
"match_fg": [245, 245, 245], // 04
"selected_fg": [255, 255, 255], // 03
"selected_match_fg": [1, 124, 157] // 04
"selected_match_fg": [21, 184, 174] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255] // 08
"layer0.tint": [46, 44, 43] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255] // 08
"layer0.tint": [66, 64, 63] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,7 +599,7 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [196, 196, 196] // 08
"layer0.tint": [255, 255, 255] // 08
},
{
"class": "close_button",
@ -750,7 +750,7 @@
"fg": [56, 54, 53], // 03
"match_fg": [36, 34, 33], // 04
"selected_fg": [206, 204, 203], // 03
"selected_match_fg": [196, 196, 196] // 04
"selected_match_fg": [255, 255, 255] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [226, 205, 176] // 08
"layer0.tint": [21, 15, 8] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [246, 225, 196] // 08
"layer0.tint": [41, 35, 28] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [139, 110, 70] // 08
"layer0.tint": [247, 162, 27] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 182, 47] // 08
"layer0.tint": [247, 162, 27] // 08
},
//
@ -750,7 +750,7 @@
"fg": [31, 25, 18], // 03
"match_fg": [11, 5, 0], // 04
"selected_fg": [181, 175, 168], // 03
"selected_match_fg": [139, 110, 70] // 04
"selected_match_fg": [226, 205, 176] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255] // 08
"layer0.tint": [0, 0, 0] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255] // 08
"layer0.tint": [20, 20, 20] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,7 +599,7 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [196, 196, 196] // 08
"layer0.tint": [255, 255, 255] // 08
},
{
"class": "close_button",
@ -750,7 +750,7 @@
"fg": [10, 10, 10], // 03
"match_fg": [0, 0, 0], // 04
"selected_fg": [160, 160, 160], // 03
"selected_match_fg": [196, 196, 196] // 04
"selected_match_fg": [255, 255, 255] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [104, 194, 68] // 08
"layer0.tint": [0, 0, 0] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [124, 214, 88] // 08
"layer0.tint": [20, 20, 20] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [28, 195, 232] // 08
"layer0.tint": [242, 212, 44] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 232, 64] // 08
"layer0.tint": [242, 212, 44] // 08
},
//
@ -750,7 +750,7 @@
"fg": [10, 10, 10], // 03
"match_fg": [0, 0, 0], // 04
"selected_fg": [160, 160, 160], // 03
"selected_match_fg": [28, 195, 232] // 04
"selected_match_fg": [104, 194, 68] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [96, 163, 101] // 08
"layer0.tint": [18, 16, 15] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [116, 183, 121] // 08
"layer0.tint": [38, 36, 35] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [149, 204, 94] // 08
"layer0.tint": [248, 187, 57] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 207, 77] // 08
"layer0.tint": [248, 187, 57] // 08
},
//
@ -750,7 +750,7 @@
"fg": [28, 26, 25], // 03
"match_fg": [8, 6, 5], // 04
"selected_fg": [178, 176, 175], // 03
"selected_match_fg": [149, 204, 94] // 04
"selected_match_fg": [96, 163, 101] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [174, 226, 57] // 08
"layer0.tint": [0, 0, 0] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [194, 246, 77] // 08
"layer0.tint": [20, 20, 20] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [78, 205, 196] // 08
"layer0.tint": [233, 238, 0] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [253, 255, 20] // 08
"layer0.tint": [233, 238, 0] // 08
},
//
@ -750,7 +750,7 @@
"fg": [10, 10, 10], // 03
"match_fg": [0, 0, 0], // 04
"selected_fg": [160, 160, 160], // 03
"selected_match_fg": [78, 205, 196] // 04
"selected_match_fg": [174, 226, 57] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [248, 187, 57] // 08
"layer0.tint": [17, 15, 14] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 207, 77] // 08
"layer0.tint": [37, 35, 34] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [46, 191, 126] // 08
"layer0.tint": [248, 187, 57] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 207, 77] // 08
"layer0.tint": [248, 187, 57] // 08
},
//
@ -750,7 +750,7 @@
"fg": [27, 25, 24], // 03
"match_fg": [7, 5, 4], // 04
"selected_fg": [177, 175, 174], // 03
"selected_match_fg": [46, 191, 126] // 04
"selected_match_fg": [248, 187, 57] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [188, 212, 42] // 08
"layer0.tint": [15, 18, 15] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [208, 232, 62] // 08
"layer0.tint": [35, 38, 35] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [38, 166, 166] // 08
"layer0.tint": [188, 212, 42] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [208, 232, 62] // 08
"layer0.tint": [188, 212, 42] // 08
},
//
@ -750,7 +750,7 @@
"fg": [25, 28, 25], // 03
"match_fg": [5, 8, 5], // 04
"selected_fg": [175, 178, 175], // 03
"selected_match_fg": [38, 166, 166] // 04
"selected_match_fg": [188, 212, 42] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [96, 163, 101] // 08
"layer0.tint": [9, 11, 7] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [116, 183, 121] // 08
"layer0.tint": [29, 31, 27] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [149, 204, 94] // 08
"layer0.tint": [248, 187, 57] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 207, 77] // 08
"layer0.tint": [248, 187, 57] // 08
},
//
@ -750,7 +750,7 @@
"fg": [19, 21, 17], // 03
"match_fg": [0, 1, 0], // 04
"selected_fg": [169, 171, 167], // 03
"selected_match_fg": [149, 204, 94] // 04
"selected_match_fg": [96, 163, 101] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [105, 210, 231] // 08
"layer0.tint": [12, 13, 14] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [125, 230, 251] // 08
"layer0.tint": [32, 33, 34] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [243, 134, 48] // 08
"layer0.tint": [243, 110, 58] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 130, 78] // 08
"layer0.tint": [243, 110, 58] // 08
},
//
@ -750,7 +750,7 @@
"fg": [22, 23, 24], // 03
"match_fg": [2, 3, 4], // 04
"selected_fg": [172, 173, 174], // 03
"selected_match_fg": [243, 134, 48] // 04
"selected_match_fg": [105, 210, 231] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 196, 140] // 08
"layer0.tint": [12, 12, 10] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 216, 160] // 08
"layer0.tint": [32, 32, 30] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -606,7 +606,7 @@
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [229, 255, 185] // 08
"layer0.tint": [209, 242, 165] // 08
},
//
@ -750,7 +750,7 @@
"fg": [22, 22, 20], // 03
"match_fg": [2, 2, 0], // 04
"selected_fg": [172, 172, 170], // 03
"selected_match_fg": [209, 242, 165] // 04
"selected_match_fg": [255, 196, 140] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [249, 212, 35] // 08
"layer0.tint": [0, 0, 0] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 232, 55] // 08
"layer0.tint": [20, 20, 20] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [252, 145, 58] // 08
"layer0.tint": [249, 212, 35] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 232, 55] // 08
"layer0.tint": [249, 212, 35] // 08
},
//
@ -750,7 +750,7 @@
"fg": [10, 10, 10], // 03
"match_fg": [0, 0, 0], // 04
"selected_fg": [160, 160, 160], // 03
"selected_match_fg": [252, 145, 58] // 04
"selected_match_fg": [249, 212, 35] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [144, 201, 63] // 08
"layer0.tint": [12, 12, 12] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [164, 221, 83] // 08
"layer0.tint": [32, 32, 32] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [245, 197, 4] // 08
"layer0.tint": [206, 131, 13] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [226, 151, 33] // 08
"layer0.tint": [206, 131, 13] // 08
},
//
@ -750,7 +750,7 @@
"fg": [22, 22, 22], // 03
"match_fg": [2, 2, 2], // 04
"selected_fg": [172, 172, 172], // 03
"selected_match_fg": [245, 197, 4] // 04
"selected_match_fg": [144, 201, 63] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255] // 08
"layer0.tint": [11, 14, 14] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255] // 08
"layer0.tint": [31, 34, 34] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,7 +599,7 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [89, 192, 227] // 08
"layer0.tint": [255, 255, 255] // 08
},
{
"class": "close_button",
@ -750,7 +750,7 @@
"fg": [21, 24, 24], // 03
"match_fg": [1, 4, 4], // 04
"selected_fg": [171, 174, 174], // 03
"selected_match_fg": [89, 192, 227] // 04
"selected_match_fg": [255, 255, 255] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [195, 203, 76] // 08
"layer0.tint": [0, 0, 0] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [215, 223, 96] // 08
"layer0.tint": [20, 20, 20] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [255, 78, 80] // 08
"layer0.tint": [59, 199, 184] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [79, 219, 204] // 08
"layer0.tint": [59, 199, 184] // 08
},
//
@ -750,7 +750,7 @@
"fg": [10, 10, 10], // 03
"match_fg": [0, 0, 0], // 04
"selected_fg": [160, 160, 160], // 03
"selected_match_fg": [255, 78, 80] // 04
"selected_match_fg": [195, 203, 76] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [181, 219, 153] // 08
"layer0.tint": [0, 0, 0] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [201, 239, 173] // 08
"layer0.tint": [20, 20, 20] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [111, 139, 148] // 08
"layer0.tint": [181, 219, 153] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [201, 239, 173] // 08
"layer0.tint": [181, 219, 153] // 08
},
//
@ -750,7 +750,7 @@
"fg": [10, 10, 10], // 03
"match_fg": [0, 0, 0], // 04
"selected_fg": [160, 160, 160], // 03
"selected_match_fg": [111, 139, 148] // 04
"selected_match_fg": [181, 219, 153] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [252, 88, 12] // 08
"layer0.tint": [0, 0, 0] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 108, 32] // 08
"layer0.tint": [20, 20, 20] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [255, 196, 140] // 08
"layer0.tint": [253, 202, 73] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 222, 93] // 08
"layer0.tint": [253, 202, 73] // 08
},
//
@ -750,7 +750,7 @@
"fg": [10, 10, 10], // 03
"match_fg": [0, 0, 0], // 04
"selected_fg": [160, 160, 160], // 03
"selected_match_fg": [255, 196, 140] // 04
"selected_match_fg": [252, 88, 12] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [245, 176, 239] // 08
"layer0.tint": [8, 7, 9] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 196, 255] // 08
"layer0.tint": [28, 27, 29] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [162, 157, 250] // 08
"layer0.tint": [245, 176, 239] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 196, 255] // 08
"layer0.tint": [245, 176, 239] // 08
},
//
@ -750,7 +750,7 @@
"fg": [18, 17, 19], // 03
"match_fg": [0, 0, 0], // 04
"selected_fg": [168, 167, 169], // 03
"selected_match_fg": [162, 157, 250] // 04
"selected_match_fg": [245, 176, 239] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [242, 137, 114] // 08
"layer0.tint": [11, 10, 9] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 157, 134] // 08
"layer0.tint": [31, 30, 29] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [242, 188, 121] // 08
"layer0.tint": [248, 187, 57] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 207, 77] // 08
"layer0.tint": [248, 187, 57] // 08
},
//
@ -750,7 +750,7 @@
"fg": [21, 20, 19], // 03
"match_fg": [1, 0, 0], // 04
"selected_fg": [171, 170, 169], // 03
"selected_match_fg": [242, 188, 121] // 04
"selected_match_fg": [242, 137, 114] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [142, 227, 80] // 08
"layer0.tint": [13, 11, 11] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [162, 247, 100] // 08
"layer0.tint": [33, 31, 31] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [242, 193, 47] // 08
"layer0.tint": [181, 219, 153] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [201, 239, 173] // 08
"layer0.tint": [181, 219, 153] // 08
},
//
@ -750,7 +750,7 @@
"fg": [23, 21, 21], // 03
"match_fg": [3, 1, 1], // 04
"selected_fg": [173, 171, 171], // 03
"selected_match_fg": [242, 193, 47] // 04
"selected_match_fg": [142, 227, 80] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255] // 08
"layer0.tint": [13, 14, 15] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255] // 08
"layer0.tint": [33, 34, 35] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [222, 51, 60] // 08
"layer0.tint": [55, 144, 222] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [75, 164, 242] // 08
"layer0.tint": [55, 144, 222] // 08
},
//
@ -750,7 +750,7 @@
"fg": [23, 24, 25], // 03
"match_fg": [3, 4, 5], // 04
"selected_fg": [173, 174, 175], // 03
"selected_match_fg": [222, 51, 60] // 04
"selected_match_fg": [255, 255, 255] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [188, 212, 42] // 08
"layer0.tint": [12, 12, 11] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [208, 232, 62] // 08
"layer0.tint": [32, 32, 31] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [38, 166, 166] // 08
"layer0.tint": [188, 212, 42] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [208, 232, 62] // 08
"layer0.tint": [188, 212, 42] // 08
},
//
@ -750,7 +750,7 @@
"fg": [22, 22, 21], // 03
"match_fg": [2, 2, 1], // 04
"selected_fg": [172, 172, 171], // 03
"selected_match_fg": [38, 166, 166] // 04
"selected_match_fg": [188, 212, 42] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [184, 102, 250] // 08
"layer0.tint": [13, 12, 12] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [204, 122, 255] // 08
"layer0.tint": [33, 32, 32] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [196, 145, 196] // 08
"layer0.tint": [184, 102, 250] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [204, 122, 255] // 08
"layer0.tint": [184, 102, 250] // 08
},
//
@ -750,7 +750,7 @@
"fg": [23, 22, 22], // 03
"match_fg": [3, 2, 2], // 04
"selected_fg": [173, 172, 172], // 03
"selected_match_fg": [196, 145, 196] // 04
"selected_match_fg": [184, 102, 250] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [149, 194, 232] // 08
"layer0.tint": [12, 11, 11] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [169, 214, 252] // 08
"layer0.tint": [32, 31, 31] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [78, 93, 132] // 08
"layer0.tint": [255, 187, 41] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 207, 61] // 08
"layer0.tint": [255, 187, 41] // 08
},
//
@ -750,7 +750,7 @@
"fg": [22, 21, 21], // 03
"match_fg": [2, 1, 1], // 04
"selected_fg": [172, 171, 171], // 03
"selected_match_fg": [78, 93, 132] // 04
"selected_match_fg": [149, 194, 232] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [208, 177, 35] // 08
"layer0.tint": [11, 12, 13] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [228, 197, 55] // 08
"layer0.tint": [31, 32, 33] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [216, 231, 120] // 08
"layer0.tint": [250, 255, 219] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 255, 239] // 08
"layer0.tint": [250, 255, 219] // 08
},
//
@ -750,7 +750,7 @@
"fg": [21, 22, 23], // 03
"match_fg": [1, 2, 3], // 04
"selected_fg": [171, 172, 173], // 03
"selected_match_fg": [216, 231, 120] // 04
"selected_match_fg": [208, 177, 35] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [128, 141, 211] // 08
"layer0.tint": [12, 12, 12] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [148, 161, 231] // 08
"layer0.tint": [32, 32, 32] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -606,7 +606,7 @@
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [98, 181, 243] // 08
"layer0.tint": [78, 161, 223] // 08
},
//
@ -750,7 +750,7 @@
"fg": [22, 22, 22], // 03
"match_fg": [2, 2, 2], // 04
"selected_fg": [172, 172, 172], // 03
"selected_match_fg": [78, 161, 223] // 04
"selected_match_fg": [128, 141, 211] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [237, 229, 116] // 08
"layer0.tint": [0, 0, 0] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 249, 136] // 08
"layer0.tint": [20, 20, 20] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [252, 145, 58] // 08
"layer0.tint": [237, 229, 116] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 249, 136] // 08
"layer0.tint": [237, 229, 116] // 08
},
//
@ -750,7 +750,7 @@
"fg": [10, 10, 10], // 03
"match_fg": [0, 0, 0], // 04
"selected_fg": [160, 160, 160], // 03
"selected_match_fg": [252, 145, 58] // 04
"selected_match_fg": [237, 229, 116] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [189, 245, 34] // 08
"layer0.tint": [6, 6, 6] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [209, 255, 54] // 08
"layer0.tint": [26, 26, 26] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [237, 242, 82] // 08
"layer0.tint": [228, 255, 51] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [248, 255, 71] // 08
"layer0.tint": [228, 255, 51] // 08
},
//
@ -750,7 +750,7 @@
"fg": [16, 16, 16], // 03
"match_fg": [0, 0, 0], // 04
"selected_fg": [166, 166, 166], // 03
"selected_match_fg": [237, 242, 82] // 04
"selected_match_fg": [189, 245, 34] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [240, 49, 19] // 08
"layer0.tint": [11, 10, 10] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 69, 39] // 08
"layer0.tint": [31, 30, 30] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -606,7 +606,7 @@
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 207, 61] // 08
"layer0.tint": [255, 187, 41] // 08
},
//
@ -750,7 +750,7 @@
"fg": [21, 20, 20], // 03
"match_fg": [1, 0, 0], // 04
"selected_fg": [171, 170, 170], // 03
"selected_match_fg": [255, 187, 41] // 04
"selected_match_fg": [240, 49, 19] // 04
},
{
"class": "quick_panel_score_label",

@ -50,7 +50,7 @@
"class": "tab_control",
"attributes": ["selected"],
"layer0.texture": "",
"layer0.tint": [255, 255, 255] // 00
"layer0.tint": [38, 127, 181] // 00
},
// Tab dirty state (close button hidden)
{
@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255] // 08
"layer0.tint": [7, 9, 11] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255] // 08
"layer0.tint": [27, 29, 31] // 08
},
{
"class": "tab_close_button",
@ -330,7 +330,7 @@
"settings": ["overlay_scroll_bars"],
"attributes": ["dark"],
// "layer0.texture": "",
"layer0.tint": [255, 255, 255] // 02
"layer0.tint": [38, 127, 181] // 02
},
// Overlay light horizontal puck (for dark content)
@ -339,7 +339,7 @@
"settings": ["overlay_scroll_bars"],
"attributes": ["horizontal","dark"],
// "layer0.texture": "",
"layer0.tint": [255, 255, 255] // 02
"layer0.tint": [38, 127, 181] // 02
},
//
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -462,7 +462,7 @@
{
"class": "tree_row",
// "layer0.texture": "",
"layer0.tint": [255, 255, 255], // 01
"layer0.tint": [38, 127, 181], // 01
"layer0.opacity": 0,
"layer0.inner_margin": [1,1]
},
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [38, 127, 181] // 08
"layer0.tint": [110, 226, 255] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [130, 246, 255] // 08
"layer0.tint": [110, 226, 255] // 08
},
//
@ -668,14 +668,14 @@
"class": "button_control",
"attributes": ["hover"],
// "layer0.texture": "",
"layer0.tint": [255, 255, 255] // -01
"layer0.tint": [38, 127, 181] // -01
},
// Pressed button state
{
"class": "button_control",
"attributes": ["pressed"],
// "layer0.texture": "",
"layer0.tint": [215, 215, 215] // -00
"layer0.tint": [0, 87, 141] // -00
},
//
// TEXT INPUT FIELD
@ -743,19 +743,19 @@
"fg": [127, 129, 131], // 04
"match_fg": [167, 169, 171], // 05
"selected_fg": [255, 255, 255], // 05
"selected_match_fg": [255, 255, 255] // 07
"selected_match_fg": [38, 127, 181] // 07
},
{
"class": "quick_panel_path_label",
"fg": [17, 19, 21], // 03
"match_fg": [0, 0, 1], // 04
"selected_fg": [167, 169, 171], // 03
"selected_match_fg": [38, 127, 181] // 04
"selected_match_fg": [255, 255, 255] // 04
},
{
"class": "quick_panel_score_label",
"fg": [7, 9, 11], // 03
"selected_fg": [255, 255, 255] // 03
"selected_fg": [38, 127, 181] // 03
},
//
@ -799,7 +799,7 @@
{
"class": "table_row",
// "layer0.texture": "",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [38, 127, 181], // 02
"layer0.opacity": 0,
"layer0.inner_margin": [3,1]
},

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [232, 218, 94] // 08
"layer0.tint": [8, 8, 9] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [252, 238, 114] // 08
"layer0.tint": [28, 28, 29] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [146, 181, 95] // 08
"layer0.tint": [232, 218, 94] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [252, 238, 114] // 08
"layer0.tint": [232, 218, 94] // 08
},
//
@ -750,7 +750,7 @@
"fg": [18, 18, 19], // 03
"match_fg": [0, 0, 0], // 04
"selected_fg": [168, 168, 169], // 03
"selected_match_fg": [146, 181, 95] // 04
"selected_match_fg": [232, 218, 94] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [188, 212, 42] // 08
"layer0.tint": [0, 0, 0] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [208, 232, 62] // 08
"layer0.tint": [20, 20, 20] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [156, 125, 219] // 08
"layer0.tint": [188, 212, 42] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [208, 232, 62] // 08
"layer0.tint": [188, 212, 42] // 08
},
//
@ -750,7 +750,7 @@
"fg": [10, 10, 10], // 03
"match_fg": [0, 0, 0], // 04
"selected_fg": [160, 160, 160], // 03
"selected_match_fg": [156, 125, 219] // 04
"selected_match_fg": [188, 212, 42] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [252, 106, 15] // 08
"layer0.tint": [34, 26, 34] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 126, 35] // 08
"layer0.tint": [54, 46, 54] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [203, 160, 205] // 08
"layer0.tint": [252, 154, 15] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 174, 35] // 08
"layer0.tint": [252, 154, 15] // 08
},
//
@ -750,7 +750,7 @@
"fg": [44, 36, 44], // 03
"match_fg": [24, 16, 24], // 04
"selected_fg": [194, 186, 194], // 03
"selected_match_fg": [203, 160, 205] // 04
"selected_match_fg": [252, 106, 15] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [104, 194, 68] // 08
"layer0.tint": [34, 35, 36] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [124, 214, 88] // 08
"layer0.tint": [54, 55, 56] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [28, 195, 232] // 08
"layer0.tint": [242, 212, 44] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 232, 64] // 08
"layer0.tint": [242, 212, 44] // 08
},
//
@ -750,7 +750,7 @@
"fg": [44, 45, 46], // 03
"match_fg": [24, 25, 26], // 04
"selected_fg": [194, 195, 196], // 03
"selected_match_fg": [28, 195, 232] // 04
"selected_match_fg": [104, 194, 68] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [96, 163, 101] // 08
"layer0.tint": [54, 49, 44] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [116, 183, 121] // 08
"layer0.tint": [74, 69, 64] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [149, 204, 94] // 08
"layer0.tint": [248, 187, 57] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 207, 77] // 08
"layer0.tint": [248, 187, 57] // 08
},
//
@ -750,7 +750,7 @@
"fg": [64, 59, 54], // 03
"match_fg": [44, 39, 34], // 04
"selected_fg": [214, 209, 204], // 03
"selected_match_fg": [149, 204, 94] // 04
"selected_match_fg": [96, 163, 101] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [174, 226, 57] // 08
"layer0.tint": [47, 48, 48] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [194, 246, 77] // 08
"layer0.tint": [67, 68, 68] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [78, 205, 196] // 08
"layer0.tint": [233, 238, 0] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [253, 255, 20] // 08
"layer0.tint": [233, 238, 0] // 08
},
//
@ -750,7 +750,7 @@
"fg": [57, 58, 58], // 03
"match_fg": [37, 38, 38], // 04
"selected_fg": [207, 208, 208], // 03
"selected_match_fg": [78, 205, 196] // 04
"selected_match_fg": [174, 226, 57] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [248, 187, 57] // 08
"layer0.tint": [54, 49, 44] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 207, 77] // 08
"layer0.tint": [74, 69, 64] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [46, 191, 126] // 08
"layer0.tint": [248, 187, 57] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 207, 77] // 08
"layer0.tint": [248, 187, 57] // 08
},
//
@ -750,7 +750,7 @@
"fg": [64, 59, 54], // 03
"match_fg": [44, 39, 34], // 04
"selected_fg": [214, 209, 204], // 03
"selected_match_fg": [46, 191, 126] // 04
"selected_match_fg": [248, 187, 57] // 04
},
{
"class": "quick_panel_score_label",

@ -8,7 +8,7 @@
{
"class": "tabset_control",
"layer0.texture": "",
"layer0.tint": [255, 255, 255], // -00
"layer0.tint": [235, 235, 235], // -00
"layer0.inner_margin": 0,
"layer0.opacity": 1,
"content_margin": 0,
@ -30,7 +30,7 @@
"max_margin_trim": 0,
"hit_test_level": 0,
"layer0.texture": "",
"layer0.tint": [255, 255, 255], // -00
"layer0.tint": [245, 245, 245], // -00
"layer0.inner_margin": [5,5],
"layer0.opacity": 1
},
@ -69,7 +69,7 @@
"class": "tab_close_button",
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.opacity": 0,
"layer0.tint": [255, 255, 255] // 03
"layer0.tint": [155, 255, 255] // 03
},
{
"class": "tab_close_button",
@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [221, 17, 68] // 08
"layer0.tint": [0, 128, 128] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [241, 37, 88] // 08
"layer0.tint": [255, 255, 255] // 08
},
{
"class": "tab_close_button",
@ -153,12 +153,12 @@
{
"class": "tab_label",
"fade": true,
"fg": [255, 255, 255] // 03
"fg": [195, 195, 195] // 03
},
{
"class": "tab_label",
"parents": [{"class": "tab_control","attributes": ["hover"]}],
"fg": [255, 255, 255]// 05
"fg": [105, 105, 105]// 05
},
{
"class": "tab_label",
@ -200,7 +200,7 @@
{
"class": "fold_button_control",
"layer0.texture": "Theme - Spacegray/Spacegray/folder-closed.png",
"layer0.tint": [255, 255, 255], // 04
"layer0.tint": [175, 175, 175], // 04
"layer0.opacity": 0.5,
"layer0.inner_margin": 0,
"content_margin": [8,8]
@ -312,7 +312,8 @@
"layer0.texture": "",
"layer0.inner_margin": [0,5],
"content_margin": [2,32],
"blur": true
"blur": true,
"layer0.tint": [0, 128, 128]
},
// Overlay horizontal puck
{
@ -322,7 +323,8 @@
"layer0.texture": "",
"layer0.inner_margin": [5,0],
"content_margin": [16,2],
"blur": true
"blur": true,
"layer0.tint": [0, 128, 128]
},
// Overlay light puck (for dark content)
{
@ -368,7 +370,7 @@
{
"class": "minimap_control",
"viewport_color": [255,255,255,15]
"viewport_color": [0, 128, 128,65]
},
//
@ -390,7 +392,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -401,7 +403,7 @@
{
"class": "tool_tip_control",
// "layer0.texture": "",
"layer0.tint": [245, 245, 245], // 02
"layer0.tint": [105, 105, 105], // 02
"layer0.inner_margin": [1,1],
"layer0.opacity": 1,
"content_margin": [4,4]
@ -420,7 +422,7 @@
{
"class": "status_bar",
"layer0.texture": "",
"layer0.tint": [255, 255, 255], // -00
"layer0.tint": [245, 245, 245], // -00
"layer0.opacity": 1,
"content_margin": 4
},
@ -433,7 +435,7 @@
{
"class": "label_control",
"parents": [{"class": "status_bar"}],
"color": [255, 255, 255] // 02
"color": [175, 175, 175] // 02
},
//
@ -445,7 +447,7 @@
"class": "sidebar_container",
// "layer0.texture": "",
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255], // -01
"layer0.tint": [250, 250, 250], // -01
"layer0.inner_margin": [1,5,2,1],
"content_margin": [0,4,0,0]
},
@ -475,7 +477,7 @@
// Sidebar heading
{
"class": "sidebar_heading",
"color": [255, 255, 255], // 02
"color": [195, 195, 195], // 02
"font.bold": true
},
{
@ -512,7 +514,7 @@
// Sidebar entry
{
"class": "sidebar_label",
"color": [255, 255, 255] // 03
"color": [175, 175, 175] // 03
},
{
"class": "sidebar_label",
@ -538,12 +540,12 @@
{
"class": "sidebar_label",
"parents": [{"class": "tree_row","attributes": ["expandable"]}],
"color": [255, 255, 255] // 03
"color": [135, 135, 135] // 03
},
{
"class": "sidebar_label",
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"color": [255, 255, 255] // 05
"color": [95, 95, 95] // 05
},
{
"class": "sidebar_label",
@ -599,14 +601,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [68, 85, 136] // 08
"layer0.tint": [221, 17, 68] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [241, 37, 88] // 08
"layer0.tint": [221, 17, 68] // 08
},
//
@ -618,14 +620,14 @@
"class": "disclosure_button_control",
"content_margin": [8,8],
"layer0.texture": "Theme - Spacegray/Spacegray/folder-closed.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [70, 198, 198], // 02
"layer0.opacity": 1,
"layer0.inner_margin": 0
},
{
"class": "disclosure_button_control",
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.tint":[255, 255, 255] // 04
"layer0.tint":[0, 128, 128] // 04
},
{
"class": "disclosure_button_control",
@ -660,7 +662,7 @@
"min_size": [64,0],
// "layer0.texture": "",
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255], // -00
"layer0.tint": [215, 215, 215], // -00
"layer0.inner_margin": [8,8]
},
// Hover button state
@ -685,7 +687,7 @@
{
"class": "text_line_control",
// "layer0.texture": "",
"layer0.tint": [255, 255, 255], // -01
"layer0.tint": [215, 215, 215], // -01
"layer0.opacity": 1,
"content_margin": 6
},
@ -700,7 +702,7 @@
// "layer0.texture": "",
"layer0.inner_margin": [0,0],
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255], // -00
"layer0.tint": [235, 235, 235], // -00
"content_margin": 0
},
// Quick panel background
@ -721,14 +723,14 @@
{
"class": "quick_panel",
"row_padding": 8,
"layer0.tint": [255, 255, 255],
"layer0.tint": [223, 223, 223],
"layer0.opacity": 1,
"dark_content": true
},
{
"class": "quick_panel_row",
// "layer0.texture": "",
"layer0.tint": [255, 255, 255], // 01
"layer0.tint": [217, 217, 217], // 01
"layer0.inner_margin": 8,
"layer0.opacity": 1
},
@ -736,26 +738,26 @@
"class": "quick_panel_row",
"attributes": ["selected"],
// "layer0.texture": "",
"layer0.tint": [255, 255, 255] // -01
"layer0.tint": [0, 128, 128] // -01
},
{
"class": "quick_panel_label",
"fg": [255, 255, 255], // 04
"match_fg": [255, 255, 255], // 05
"selected_fg": [255, 255, 255], // 05
"selected_match_fg": [0, 128, 128] // 07
"fg": [135, 135, 135], // 04
"match_fg": [95, 95, 95], // 05
"selected_fg": [150, 255, 255], // 05
"selected_match_fg": [255, 255, 255] // 07
},
{
"class": "quick_panel_path_label",
"fg": [255, 255, 255], // 03
"match_fg": [245, 245, 245], // 04
"selected_fg": [255, 255, 255], // 03
"selected_match_fg": [68, 85, 136] // 04
"fg": [155, 155, 155], // 03
"match_fg": [95, 95, 95], // 04
"selected_fg": [200, 255, 255], // 03
"selected_match_fg": [255, 255, 255] // 04
},
{
"class": "quick_panel_score_label",
"fg": [255, 255, 255], // 03
"selected_fg": [0, 128, 128] // 03
"fg": [155, 155, 155], // 03
"selected_fg": [255, 255, 255] // 03
},
//
@ -873,7 +875,7 @@
{
"class": "icon_regex",
"layer0.texture": "Theme - Spacegray/Spacegray/regex.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [195, 195, 195], // 02
"layer0.opacity": 1,
"content_margin": 8
@ -881,33 +883,33 @@
{
"class": "icon_regex",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [0, 128, 128] // 07
},
// Case sensitive search button
{
"class": "icon_case",
"layer0.texture": "Theme - Spacegray/Spacegray/casesens.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [195, 195, 195], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_case",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [0, 128, 128] // 07
},
// Match whole word search button
{
"class": "icon_whole_word",
"layer0.texture": "Theme - Spacegray/Spacegray/wholeword.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [195, 195, 195], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_whole_word",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [0, 128, 128] // 07
},
//
@ -918,27 +920,27 @@
{
"class": "icon_context",
"layer0.texture": "Theme - Spacegray/Spacegray/context.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [195, 195, 195], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_context",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [0, 128, 128] // 07
},
// Use search buffer
{
"class": "icon_use_buffer",
"layer0.texture": "Theme - Spacegray/Spacegray/buffer.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [195, 195, 195], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_use_buffer",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [0, 128, 128] // 07
},
//
@ -948,40 +950,40 @@
{
"class": "icon_reverse",
"layer0.texture": "Theme - Spacegray/Spacegray/reverse.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [195, 195, 195], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_reverse",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [0, 128, 128] // 07
},
// Search wrap button
{
"class": "icon_wrap",
"layer0.texture": "Theme - Spacegray/Spacegray/wrap.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [195, 195, 195], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_wrap",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [0, 128, 128] // 07
},
// Search in selection button
{
"class": "icon_in_selection",
"layer0.texture": "Theme - Spacegray/Spacegray/selection.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [195, 195, 195], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_in_selection",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [0, 128, 128] // 07
},
//
@ -992,14 +994,14 @@
{
"class": "icon_preserve_case",
"layer0.texture": "Theme - Spacegray/Spacegray/lock.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [195, 195, 195], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_preserve_case",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [0, 128, 128] // 07
},
//
@ -1010,14 +1012,14 @@
{
"class": "icon_highlight",
"layer0.texture": "Theme - Spacegray/Spacegray/highlight.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [195, 195, 195], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_highlight",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [0, 128, 128] // 07
},
//
@ -1027,7 +1029,7 @@
"class": "disclosure_button_control",
"settings": ["spacegray_color_expanded_folder"],
"attributes": ["expanded"],
"layer0.tint": [255, 255, 255] // 0A
"layer0.tint": [0, 128, 128] // 0A
},
//
@ -1062,3 +1064,4 @@
}
]

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [188, 212, 42] // 08
"layer0.tint": [42, 51, 43] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [208, 232, 62] // 08
"layer0.tint": [62, 71, 63] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [38, 166, 166] // 08
"layer0.tint": [188, 212, 42] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [208, 232, 62] // 08
"layer0.tint": [188, 212, 42] // 08
},
//
@ -750,7 +750,7 @@
"fg": [52, 61, 53], // 03
"match_fg": [32, 41, 33], // 04
"selected_fg": [202, 211, 203], // 03
"selected_match_fg": [38, 166, 166] // 04
"selected_match_fg": [188, 212, 42] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [96, 163, 101] // 08
"layer0.tint": [25, 31, 19] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [116, 183, 121] // 08
"layer0.tint": [45, 51, 39] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [149, 204, 94] // 08
"layer0.tint": [248, 187, 57] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 207, 77] // 08
"layer0.tint": [248, 187, 57] // 08
},
//
@ -750,7 +750,7 @@
"fg": [35, 41, 29], // 03
"match_fg": [15, 21, 9], // 04
"selected_fg": [185, 191, 179], // 03
"selected_match_fg": [149, 204, 94] // 04
"selected_match_fg": [96, 163, 101] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [105, 210, 231] // 08
"layer0.tint": [46, 51, 54] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [125, 230, 251] // 08
"layer0.tint": [66, 71, 74] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [243, 134, 48] // 08
"layer0.tint": [243, 110, 58] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 130, 78] // 08
"layer0.tint": [243, 110, 58] // 08
},
//
@ -750,7 +750,7 @@
"fg": [56, 61, 64], // 03
"match_fg": [36, 41, 44], // 04
"selected_fg": [206, 211, 214], // 03
"selected_match_fg": [243, 134, 48] // 04
"selected_match_fg": [105, 210, 231] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 196, 140] // 08
"layer0.tint": [49, 51, 44] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 216, 160] // 08
"layer0.tint": [69, 71, 64] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -606,7 +606,7 @@
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [229, 255, 185] // 08
"layer0.tint": [209, 242, 165] // 08
},
//
@ -750,7 +750,7 @@
"fg": [59, 61, 54], // 03
"match_fg": [39, 41, 34], // 04
"selected_fg": [209, 211, 204], // 03
"selected_match_fg": [209, 242, 165] // 04
"selected_match_fg": [255, 196, 140] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [249, 212, 35] // 08
"layer0.tint": [34, 34, 34] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 232, 55] // 08
"layer0.tint": [54, 54, 54] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [252, 145, 58] // 08
"layer0.tint": [249, 212, 35] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 232, 55] // 08
"layer0.tint": [249, 212, 35] // 08
},
//
@ -750,7 +750,7 @@
"fg": [44, 44, 44], // 03
"match_fg": [24, 24, 24], // 04
"selected_fg": [194, 194, 194], // 03
"selected_match_fg": [252, 145, 58] // 04
"selected_match_fg": [249, 212, 35] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [144, 201, 63] // 08
"layer0.tint": [45, 44, 43] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [164, 221, 83] // 08
"layer0.tint": [65, 64, 63] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [245, 197, 4] // 08
"layer0.tint": [206, 131, 13] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [226, 151, 33] // 08
"layer0.tint": [206, 131, 13] // 08
},
//
@ -750,7 +750,7 @@
"fg": [55, 54, 53], // 03
"match_fg": [35, 34, 33], // 04
"selected_fg": [205, 204, 203], // 03
"selected_match_fg": [245, 197, 4] // 04
"selected_match_fg": [144, 201, 63] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255] // 08
"layer0.tint": [50, 59, 61] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255] // 08
"layer0.tint": [70, 79, 81] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,7 +599,7 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [89, 192, 227] // 08
"layer0.tint": [255, 255, 255] // 08
},
{
"class": "close_button",
@ -750,7 +750,7 @@
"fg": [60, 69, 71], // 03
"match_fg": [40, 49, 51], // 04
"selected_fg": [210, 219, 221], // 03
"selected_match_fg": [89, 192, 227] // 04
"selected_match_fg": [255, 255, 255] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [195, 203, 76] // 08
"layer0.tint": [34, 34, 34] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [215, 223, 96] // 08
"layer0.tint": [54, 54, 54] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [255, 78, 80] // 08
"layer0.tint": [59, 199, 184] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [79, 219, 204] // 08
"layer0.tint": [59, 199, 184] // 08
},
//
@ -750,7 +750,7 @@
"fg": [44, 44, 44], // 03
"match_fg": [24, 24, 24], // 04
"selected_fg": [194, 194, 194], // 03
"selected_match_fg": [255, 78, 80] // 04
"selected_match_fg": [195, 203, 76] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [181, 219, 153] // 08
"layer0.tint": [17, 17, 17] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [201, 239, 173] // 08
"layer0.tint": [37, 37, 37] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [111, 139, 148] // 08
"layer0.tint": [181, 219, 153] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [201, 239, 173] // 08
"layer0.tint": [181, 219, 153] // 08
},
//
@ -750,7 +750,7 @@
"fg": [27, 27, 27], // 03
"match_fg": [7, 7, 7], // 04
"selected_fg": [177, 177, 177], // 03
"selected_match_fg": [111, 139, 148] // 04
"selected_match_fg": [181, 219, 153] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [11, 109, 92] // 08
"layer0.tint": [22, 26, 25] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [31, 129, 112] // 08
"layer0.tint": [42, 46, 45] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [34, 153, 134] // 08
"layer0.tint": [161, 230, 193] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [181, 250, 213] // 08
"layer0.tint": [161, 230, 193] // 08
},
//
@ -750,7 +750,7 @@
"fg": [32, 36, 35], // 03
"match_fg": [12, 16, 15], // 04
"selected_fg": [182, 186, 185], // 03
"selected_match_fg": [34, 153, 134] // 04
"selected_match_fg": [11, 109, 92] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [252, 88, 12] // 08
"layer0.tint": [46, 44, 43] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 108, 32] // 08
"layer0.tint": [66, 64, 63] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [255, 196, 140] // 08
"layer0.tint": [253, 202, 73] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 222, 93] // 08
"layer0.tint": [253, 202, 73] // 08
},
//
@ -750,7 +750,7 @@
"fg": [56, 54, 53], // 03
"match_fg": [36, 34, 33], // 04
"selected_fg": [206, 204, 203], // 03
"selected_match_fg": [255, 196, 140] // 04
"selected_match_fg": [252, 88, 12] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [245, 176, 239] // 08
"layer0.tint": [41, 34, 46] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 196, 255] // 08
"layer0.tint": [61, 54, 66] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [162, 157, 250] // 08
"layer0.tint": [245, 176, 239] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 196, 255] // 08
"layer0.tint": [245, 176, 239] // 08
},
//
@ -750,7 +750,7 @@
"fg": [51, 44, 56], // 03
"match_fg": [31, 24, 36], // 04
"selected_fg": [201, 194, 206], // 03
"selected_match_fg": [162, 157, 250] // 04
"selected_match_fg": [245, 176, 239] // 04
},
{
"class": "quick_panel_score_label",

@ -50,7 +50,7 @@
"class": "tab_control",
"attributes": ["selected"],
"layer0.texture": "",
"layer0.tint": [255, 255, 255] // 00
"layer0.tint": [38, 127, 181] // 00
},
// Tab dirty state (close button hidden)
{
@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 178, 13] // 08
"layer0.tint": [20, 25, 31] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 198, 33] // 08
"layer0.tint": [40, 45, 51] // 08
},
{
"class": "tab_close_button",
@ -330,7 +330,7 @@
"settings": ["overlay_scroll_bars"],
"attributes": ["dark"],
// "layer0.texture": "",
"layer0.tint": [255, 255, 255] // 02
"layer0.tint": [38, 127, 181] // 02
},
// Overlay light horizontal puck (for dark content)
@ -339,7 +339,7 @@
"settings": ["overlay_scroll_bars"],
"attributes": ["horizontal","dark"],
// "layer0.texture": "",
"layer0.tint": [255, 255, 255] // 02
"layer0.tint": [38, 127, 181] // 02
},
//
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -462,7 +462,7 @@
{
"class": "tree_row",
// "layer0.texture": "",
"layer0.tint": [255, 255, 255], // 01
"layer0.tint": [38, 127, 181], // 01
"layer0.opacity": 0,
"layer0.inner_margin": [1,1]
},
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [38, 127, 181] // 08
"layer0.tint": [255, 65, 13] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 85, 33] // 08
"layer0.tint": [255, 65, 13] // 08
},
//
@ -668,14 +668,14 @@
"class": "button_control",
"attributes": ["hover"],
// "layer0.texture": "",
"layer0.tint": [255, 255, 255] // -01
"layer0.tint": [38, 127, 181] // -01
},
// Pressed button state
{
"class": "button_control",
"attributes": ["pressed"],
// "layer0.texture": "",
"layer0.tint": [215, 215, 215] // -00
"layer0.tint": [0, 87, 141] // -00
},
//
// TEXT INPUT FIELD
@ -743,19 +743,19 @@
"fg": [140, 145, 151], // 04
"match_fg": [180, 185, 191], // 05
"selected_fg": [255, 255, 255], // 05
"selected_match_fg": [255, 255, 255] // 07
"selected_match_fg": [38, 127, 181] // 07
},
{
"class": "quick_panel_path_label",
"fg": [30, 35, 41], // 03
"match_fg": [10, 15, 21], // 04
"selected_fg": [180, 185, 191], // 03
"selected_match_fg": [38, 127, 181] // 04
"selected_match_fg": [255, 178, 13] // 04
},
{
"class": "quick_panel_score_label",
"fg": [20, 25, 31], // 03
"selected_fg": [255, 255, 255] // 03
"selected_fg": [38, 127, 181] // 03
},
//
@ -799,7 +799,7 @@
{
"class": "table_row",
// "layer0.texture": "",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [38, 127, 181], // 02
"layer0.opacity": 0,
"layer0.inner_margin": [3,1]
},

@ -8,7 +8,7 @@
{
"class": "tabset_control",
"layer0.texture": "",
"layer0.tint": [255, 255, 255], // -00
"layer0.tint": [235, 235, 235], // -00
"layer0.inner_margin": 0,
"layer0.opacity": 1,
"content_margin": 0,
@ -30,7 +30,7 @@
"max_margin_trim": 0,
"hit_test_level": 0,
"layer0.texture": "",
"layer0.tint": [255, 255, 255], // -00
"layer0.tint": [245, 245, 245], // -00
"layer0.inner_margin": [5,5],
"layer0.opacity": 1
},
@ -69,7 +69,7 @@
"class": "tab_close_button",
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.opacity": 0,
"layer0.tint": [255, 255, 255] // 03
"layer0.tint": [255, 255, 232] // 03
},
{
"class": "tab_close_button",
@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [96, 163, 101] // 08
"layer0.tint": [219, 120, 77] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [116, 183, 121] // 08
"layer0.tint": [255, 255, 255] // 08
},
{
"class": "tab_close_button",
@ -153,12 +153,12 @@
{
"class": "tab_label",
"fade": true,
"fg": [255, 255, 255] // 03
"fg": [195, 195, 195] // 03
},
{
"class": "tab_label",
"parents": [{"class": "tab_control","attributes": ["hover"]}],
"fg": [255, 255, 255]// 05
"fg": [105, 105, 105]// 05
},
{
"class": "tab_label",
@ -200,7 +200,7 @@
{
"class": "fold_button_control",
"layer0.texture": "Theme - Spacegray/Spacegray/folder-closed.png",
"layer0.tint": [255, 255, 255], // 04
"layer0.tint": [175, 175, 175], // 04
"layer0.opacity": 0.5,
"layer0.inner_margin": 0,
"content_margin": [8,8]
@ -312,7 +312,8 @@
"layer0.texture": "",
"layer0.inner_margin": [0,5],
"content_margin": [2,32],
"blur": true
"blur": true,
"layer0.tint": [219, 120, 77]
},
// Overlay horizontal puck
{
@ -322,7 +323,8 @@
"layer0.texture": "",
"layer0.inner_margin": [5,0],
"content_margin": [16,2],
"blur": true
"blur": true,
"layer0.tint": [219, 120, 77]
},
// Overlay light puck (for dark content)
{
@ -368,7 +370,7 @@
{
"class": "minimap_control",
"viewport_color": [255,255,255,15]
"viewport_color": [219, 120, 77,65]
},
//
@ -390,7 +392,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -401,7 +403,7 @@
{
"class": "tool_tip_control",
// "layer0.texture": "",
"layer0.tint": [245, 245, 245], // 02
"layer0.tint": [105, 105, 105], // 02
"layer0.inner_margin": [1,1],
"layer0.opacity": 1,
"content_margin": [4,4]
@ -420,7 +422,7 @@
{
"class": "status_bar",
"layer0.texture": "",
"layer0.tint": [255, 255, 255], // -00
"layer0.tint": [245, 245, 245], // -00
"layer0.opacity": 1,
"content_margin": 4
},
@ -433,7 +435,7 @@
{
"class": "label_control",
"parents": [{"class": "status_bar"}],
"color": [255, 255, 255] // 02
"color": [175, 175, 175] // 02
},
//
@ -445,7 +447,7 @@
"class": "sidebar_container",
// "layer0.texture": "",
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255], // -01
"layer0.tint": [250, 250, 250], // -01
"layer0.inner_margin": [1,5,2,1],
"content_margin": [0,4,0,0]
},
@ -475,7 +477,7 @@
// Sidebar heading
{
"class": "sidebar_heading",
"color": [255, 255, 255], // 02
"color": [195, 195, 195], // 02
"font.bold": true
},
{
@ -512,7 +514,7 @@
// Sidebar entry
{
"class": "sidebar_label",
"color": [255, 255, 255] // 03
"color": [175, 175, 175] // 03
},
{
"class": "sidebar_label",
@ -538,12 +540,12 @@
{
"class": "sidebar_label",
"parents": [{"class": "tree_row","attributes": ["expandable"]}],
"color": [255, 255, 255] // 03
"color": [135, 135, 135] // 03
},
{
"class": "sidebar_label",
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"color": [255, 255, 255] // 05
"color": [95, 95, 95] // 05
},
{
"class": "sidebar_label",
@ -599,14 +601,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [149, 204, 94] // 08
"layer0.tint": [248, 187, 57] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 207, 77] // 08
"layer0.tint": [248, 187, 57] // 08
},
//
@ -618,14 +620,14 @@
"class": "disclosure_button_control",
"content_margin": [8,8],
"layer0.texture": "Theme - Spacegray/Spacegray/folder-closed.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [255, 190, 147], // 02
"layer0.opacity": 1,
"layer0.inner_margin": 0
},
{
"class": "disclosure_button_control",
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.tint":[255, 255, 255] // 04
"layer0.tint":[219, 120, 77] // 04
},
{
"class": "disclosure_button_control",
@ -660,7 +662,7 @@
"min_size": [64,0],
// "layer0.texture": "",
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255], // -00
"layer0.tint": [215, 215, 215], // -00
"layer0.inner_margin": [8,8]
},
// Hover button state
@ -685,7 +687,7 @@
{
"class": "text_line_control",
// "layer0.texture": "",
"layer0.tint": [255, 255, 255], // -01
"layer0.tint": [215, 215, 215], // -01
"layer0.opacity": 1,
"content_margin": 6
},
@ -700,7 +702,7 @@
// "layer0.texture": "",
"layer0.inner_margin": [0,0],
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255], // -00
"layer0.tint": [235, 235, 235], // -00
"content_margin": 0
},
// Quick panel background
@ -721,14 +723,14 @@
{
"class": "quick_panel",
"row_padding": 8,
"layer0.tint": [255, 255, 255],
"layer0.tint": [223, 223, 223],
"layer0.opacity": 1,
"dark_content": true
},
{
"class": "quick_panel_row",
// "layer0.texture": "",
"layer0.tint": [255, 255, 255], // 01
"layer0.tint": [217, 217, 217], // 01
"layer0.inner_margin": 8,
"layer0.opacity": 1
},
@ -736,26 +738,26 @@
"class": "quick_panel_row",
"attributes": ["selected"],
// "layer0.texture": "",
"layer0.tint": [255, 255, 255] // -01
"layer0.tint": [219, 120, 77] // -01
},
{
"class": "quick_panel_label",
"fg": [255, 255, 255], // 04
"match_fg": [255, 255, 255], // 05
"selected_fg": [255, 255, 255], // 05
"selected_match_fg": [219, 120, 77] // 07
"fg": [135, 135, 135], // 04
"match_fg": [95, 95, 95], // 05
"selected_fg": [255, 255, 227], // 05
"selected_match_fg": [255, 255, 255] // 07
},
{
"class": "quick_panel_path_label",
"fg": [255, 255, 255], // 03
"match_fg": [245, 245, 245], // 04
"fg": [155, 155, 155], // 03
"match_fg": [95, 95, 95], // 04
"selected_fg": [255, 255, 255], // 03
"selected_match_fg": [149, 204, 94] // 04
"selected_match_fg": [255, 255, 255] // 04
},
{
"class": "quick_panel_score_label",
"fg": [255, 255, 255], // 03
"selected_fg": [219, 120, 77] // 03
"fg": [155, 155, 155], // 03
"selected_fg": [255, 255, 255] // 03
},
//
@ -873,7 +875,7 @@
{
"class": "icon_regex",
"layer0.texture": "Theme - Spacegray/Spacegray/regex.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [195, 195, 195], // 02
"layer0.opacity": 1,
"content_margin": 8
@ -881,33 +883,33 @@
{
"class": "icon_regex",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [219, 120, 77] // 07
},
// Case sensitive search button
{
"class": "icon_case",
"layer0.texture": "Theme - Spacegray/Spacegray/casesens.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [195, 195, 195], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_case",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [219, 120, 77] // 07
},
// Match whole word search button
{
"class": "icon_whole_word",
"layer0.texture": "Theme - Spacegray/Spacegray/wholeword.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [195, 195, 195], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_whole_word",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [219, 120, 77] // 07
},
//
@ -918,27 +920,27 @@
{
"class": "icon_context",
"layer0.texture": "Theme - Spacegray/Spacegray/context.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [195, 195, 195], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_context",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [219, 120, 77] // 07
},
// Use search buffer
{
"class": "icon_use_buffer",
"layer0.texture": "Theme - Spacegray/Spacegray/buffer.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [195, 195, 195], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_use_buffer",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [219, 120, 77] // 07
},
//
@ -948,40 +950,40 @@
{
"class": "icon_reverse",
"layer0.texture": "Theme - Spacegray/Spacegray/reverse.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [195, 195, 195], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_reverse",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [219, 120, 77] // 07
},
// Search wrap button
{
"class": "icon_wrap",
"layer0.texture": "Theme - Spacegray/Spacegray/wrap.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [195, 195, 195], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_wrap",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [219, 120, 77] // 07
},
// Search in selection button
{
"class": "icon_in_selection",
"layer0.texture": "Theme - Spacegray/Spacegray/selection.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [195, 195, 195], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_in_selection",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [219, 120, 77] // 07
},
//
@ -992,14 +994,14 @@
{
"class": "icon_preserve_case",
"layer0.texture": "Theme - Spacegray/Spacegray/lock.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [195, 195, 195], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_preserve_case",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [219, 120, 77] // 07
},
//
@ -1010,14 +1012,14 @@
{
"class": "icon_highlight",
"layer0.texture": "Theme - Spacegray/Spacegray/highlight.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [195, 195, 195], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_highlight",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [219, 120, 77] // 07
},
//
@ -1027,7 +1029,7 @@
"class": "disclosure_button_control",
"settings": ["spacegray_color_expanded_folder"],
"attributes": ["expanded"],
"layer0.tint": [255, 255, 255] // 0A
"layer0.tint": [219, 120, 77] // 0A
},
//
@ -1062,3 +1064,4 @@
}
]

@ -8,7 +8,7 @@
{
"class": "tabset_control",
"layer0.texture": "",
"layer0.tint": [255, 255, 255], // -00
"layer0.tint": [218, 218, 218], // -00
"layer0.inner_margin": 0,
"layer0.opacity": 1,
"content_margin": 0,
@ -30,7 +30,7 @@
"max_margin_trim": 0,
"hit_test_level": 0,
"layer0.texture": "",
"layer0.tint": [255, 255, 255], // -00
"layer0.tint": [228, 228, 228], // -00
"layer0.inner_margin": [5,5],
"layer0.opacity": 1
},
@ -69,7 +69,7 @@
"class": "tab_close_button",
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.opacity": 0,
"layer0.tint": [255, 255, 255] // 03
"layer0.tint": [255, 252, 238] // 03
},
{
"class": "tab_close_button",
@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [128, 141, 211] // 08
"layer0.tint": [246, 97, 83] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [148, 161, 231] // 08
"layer0.tint": [255, 255, 255] // 08
},
{
"class": "tab_close_button",
@ -153,12 +153,12 @@
{
"class": "tab_label",
"fade": true,
"fg": [255, 255, 255] // 03
"fg": [178, 178, 178] // 03
},
{
"class": "tab_label",
"parents": [{"class": "tab_control","attributes": ["hover"]}],
"fg": [255, 255, 255]// 05
"fg": [88, 88, 88]// 05
},
{
"class": "tab_label",
@ -200,7 +200,7 @@
{
"class": "fold_button_control",
"layer0.texture": "Theme - Spacegray/Spacegray/folder-closed.png",
"layer0.tint": [255, 255, 255], // 04
"layer0.tint": [158, 158, 158], // 04
"layer0.opacity": 0.5,
"layer0.inner_margin": 0,
"content_margin": [8,8]
@ -312,7 +312,8 @@
"layer0.texture": "",
"layer0.inner_margin": [0,5],
"content_margin": [2,32],
"blur": true
"blur": true,
"layer0.tint": [246, 97, 83]
},
// Overlay horizontal puck
{
@ -322,7 +323,8 @@
"layer0.texture": "",
"layer0.inner_margin": [5,0],
"content_margin": [16,2],
"blur": true
"blur": true,
"layer0.tint": [246, 97, 83]
},
// Overlay light puck (for dark content)
{
@ -348,7 +350,7 @@
{
"class": "sheet_container_control",
"layer0.tint": [235, 235, 235],
"layer0.tint": [218, 218, 218],
"layer0.opacity": 1
},
@ -368,7 +370,7 @@
{
"class": "minimap_control",
"viewport_color": [255,255,255,15]
"viewport_color": [246, 97, 83,65]
},
//
@ -390,7 +392,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -401,7 +403,7 @@
{
"class": "tool_tip_control",
// "layer0.texture": "",
"layer0.tint": [245, 245, 245], // 02
"layer0.tint": [88, 88, 88], // 02
"layer0.inner_margin": [1,1],
"layer0.opacity": 1,
"content_margin": [4,4]
@ -420,7 +422,7 @@
{
"class": "status_bar",
"layer0.texture": "",
"layer0.tint": [255, 255, 255], // -00
"layer0.tint": [228, 228, 228], // -00
"layer0.opacity": 1,
"content_margin": 4
},
@ -433,7 +435,7 @@
{
"class": "label_control",
"parents": [{"class": "status_bar"}],
"color": [255, 255, 255] // 02
"color": [158, 158, 158] // 02
},
//
@ -445,7 +447,7 @@
"class": "sidebar_container",
// "layer0.texture": "",
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255], // -01
"layer0.tint": [233, 233, 233], // -01
"layer0.inner_margin": [1,5,2,1],
"content_margin": [0,4,0,0]
},
@ -475,7 +477,7 @@
// Sidebar heading
{
"class": "sidebar_heading",
"color": [255, 255, 255], // 02
"color": [178, 178, 178], // 02
"font.bold": true
},
{
@ -512,7 +514,7 @@
// Sidebar entry
{
"class": "sidebar_label",
"color": [255, 255, 255] // 03
"color": [158, 158, 158] // 03
},
{
"class": "sidebar_label",
@ -538,12 +540,12 @@
{
"class": "sidebar_label",
"parents": [{"class": "tree_row","attributes": ["expandable"]}],
"color": [255, 255, 255] // 03
"color": [118, 118, 118] // 03
},
{
"class": "sidebar_label",
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"color": [255, 255, 255] // 05
"color": [78, 78, 78] // 05
},
{
"class": "sidebar_label",
@ -606,7 +608,7 @@
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [98, 181, 243] // 08
"layer0.tint": [78, 161, 223] // 08
},
//
@ -618,14 +620,14 @@
"class": "disclosure_button_control",
"content_margin": [8,8],
"layer0.texture": "Theme - Spacegray/Spacegray/folder-closed.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [255, 167, 153], // 02
"layer0.opacity": 1,
"layer0.inner_margin": 0
},
{
"class": "disclosure_button_control",
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.tint":[255, 255, 255] // 04
"layer0.tint":[246, 97, 83] // 04
},
{
"class": "disclosure_button_control",
@ -660,7 +662,7 @@
"min_size": [64,0],
// "layer0.texture": "",
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255], // -00
"layer0.tint": [198, 198, 198], // -00
"layer0.inner_margin": [8,8]
},
// Hover button state
@ -685,7 +687,7 @@
{
"class": "text_line_control",
// "layer0.texture": "",
"layer0.tint": [255, 255, 255], // -01
"layer0.tint": [198, 198, 198], // -01
"layer0.opacity": 1,
"content_margin": 6
},
@ -700,7 +702,7 @@
// "layer0.texture": "",
"layer0.inner_margin": [0,0],
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255], // -00
"layer0.tint": [218, 218, 218], // -00
"content_margin": 0
},
// Quick panel background
@ -721,14 +723,14 @@
{
"class": "quick_panel",
"row_padding": 8,
"layer0.tint": [255, 255, 255],
"layer0.tint": [206, 206, 206],
"layer0.opacity": 1,
"dark_content": true
},
{
"class": "quick_panel_row",
// "layer0.texture": "",
"layer0.tint": [255, 255, 255], // 01
"layer0.tint": [200, 200, 200], // 01
"layer0.inner_margin": 8,
"layer0.opacity": 1
},
@ -736,26 +738,26 @@
"class": "quick_panel_row",
"attributes": ["selected"],
// "layer0.texture": "",
"layer0.tint": [255, 255, 255] // -01
"layer0.tint": [246, 97, 83] // -01
},
{
"class": "quick_panel_label",
"fg": [255, 255, 255], // 04
"match_fg": [255, 255, 255], // 05
"selected_fg": [255, 255, 255], // 05
"selected_match_fg": [246, 97, 83] // 07
"fg": [118, 118, 118], // 04
"match_fg": [78, 78, 78], // 05
"selected_fg": [255, 247, 233], // 05
"selected_match_fg": [255, 255, 255] // 07
},
{
"class": "quick_panel_path_label",
"fg": [255, 255, 255], // 03
"match_fg": [245, 245, 245], // 04
"fg": [138, 138, 138], // 03
"match_fg": [78, 78, 78], // 04
"selected_fg": [255, 255, 255], // 03
"selected_match_fg": [78, 161, 223] // 04
"selected_match_fg": [255, 255, 255] // 04
},
{
"class": "quick_panel_score_label",
"fg": [255, 255, 255], // 03
"selected_fg": [246, 97, 83] // 03
"fg": [138, 138, 138], // 03
"selected_fg": [255, 255, 255] // 03
},
//
@ -772,7 +774,7 @@
"class": "mini_quick_panel_row",
"attributes": ["selected"],
// "layer0.texture": "",
"layer0.tint": [255, 255, 255] // -01
"layer0.tint": [242, 242, 242] // -01
},
//
@ -782,7 +784,7 @@
{
"class": "popup_control",
"content_margin": [0,0],
"layer0.tint": [255, 255, 255], // 01
"layer0.tint": [248, 248, 248], // 01
"layer0.opacity": 1
},
{
@ -873,7 +875,7 @@
{
"class": "icon_regex",
"layer0.texture": "Theme - Spacegray/Spacegray/regex.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [178, 178, 178], // 02
"layer0.opacity": 1,
"content_margin": 8
@ -881,33 +883,33 @@
{
"class": "icon_regex",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [246, 97, 83] // 07
},
// Case sensitive search button
{
"class": "icon_case",
"layer0.texture": "Theme - Spacegray/Spacegray/casesens.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [178, 178, 178], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_case",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [246, 97, 83] // 07
},
// Match whole word search button
{
"class": "icon_whole_word",
"layer0.texture": "Theme - Spacegray/Spacegray/wholeword.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [178, 178, 178], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_whole_word",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [246, 97, 83] // 07
},
//
@ -918,27 +920,27 @@
{
"class": "icon_context",
"layer0.texture": "Theme - Spacegray/Spacegray/context.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [178, 178, 178], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_context",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [246, 97, 83] // 07
},
// Use search buffer
{
"class": "icon_use_buffer",
"layer0.texture": "Theme - Spacegray/Spacegray/buffer.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [178, 178, 178], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_use_buffer",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [246, 97, 83] // 07
},
//
@ -948,40 +950,40 @@
{
"class": "icon_reverse",
"layer0.texture": "Theme - Spacegray/Spacegray/reverse.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [178, 178, 178], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_reverse",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [246, 97, 83] // 07
},
// Search wrap button
{
"class": "icon_wrap",
"layer0.texture": "Theme - Spacegray/Spacegray/wrap.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [178, 178, 178], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_wrap",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [246, 97, 83] // 07
},
// Search in selection button
{
"class": "icon_in_selection",
"layer0.texture": "Theme - Spacegray/Spacegray/selection.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [178, 178, 178], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_in_selection",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [246, 97, 83] // 07
},
//
@ -992,14 +994,14 @@
{
"class": "icon_preserve_case",
"layer0.texture": "Theme - Spacegray/Spacegray/lock.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [178, 178, 178], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_preserve_case",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [246, 97, 83] // 07
},
//
@ -1010,14 +1012,14 @@
{
"class": "icon_highlight",
"layer0.texture": "Theme - Spacegray/Spacegray/highlight.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [178, 178, 178], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_highlight",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [246, 97, 83] // 07
},
//
@ -1027,7 +1029,7 @@
"class": "disclosure_button_control",
"settings": ["spacegray_color_expanded_folder"],
"attributes": ["expanded"],
"layer0.tint": [255, 255, 255] // 0A
"layer0.tint": [246, 97, 83] // 0A
},
//
@ -1062,3 +1064,4 @@
}
]

@ -8,7 +8,7 @@
{
"class": "tabset_control",
"layer0.texture": "",
"layer0.tint": [255, 255, 255], // -00
"layer0.tint": [225, 228, 232], // -00
"layer0.inner_margin": 0,
"layer0.opacity": 1,
"content_margin": 0,
@ -30,7 +30,7 @@
"max_margin_trim": 0,
"hit_test_level": 0,
"layer0.texture": "",
"layer0.tint": [255, 255, 255], // -00
"layer0.tint": [235, 238, 242], // -00
"layer0.inner_margin": [5,5],
"layer0.opacity": 1
},
@ -69,7 +69,7 @@
"class": "tab_close_button",
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.opacity": 0,
"layer0.tint": [255, 255, 255] // 03
"layer0.tint": [208, 246, 255] // 03
},
{
"class": "tab_close_button",
@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [227, 189, 20] // 08
"layer0.tint": [53, 91, 140] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [247, 209, 40] // 08
"layer0.tint": [255, 255, 255] // 08
},
{
"class": "tab_close_button",
@ -153,12 +153,12 @@
{
"class": "tab_label",
"fade": true,
"fg": [255, 255, 255] // 03
"fg": [185, 188, 192] // 03
},
{
"class": "tab_label",
"parents": [{"class": "tab_control","attributes": ["hover"]}],
"fg": [255, 255, 255]// 05
"fg": [95, 98, 102]// 05
},
{
"class": "tab_label",
@ -200,7 +200,7 @@
{
"class": "fold_button_control",
"layer0.texture": "Theme - Spacegray/Spacegray/folder-closed.png",
"layer0.tint": [255, 255, 255], // 04
"layer0.tint": [165, 168, 172], // 04
"layer0.opacity": 0.5,
"layer0.inner_margin": 0,
"content_margin": [8,8]
@ -312,7 +312,8 @@
"layer0.texture": "",
"layer0.inner_margin": [0,5],
"content_margin": [2,32],
"blur": true
"blur": true,
"layer0.tint": [53, 91, 140]
},
// Overlay horizontal puck
{
@ -322,7 +323,8 @@
"layer0.texture": "",
"layer0.inner_margin": [5,0],
"content_margin": [16,2],
"blur": true
"blur": true,
"layer0.tint": [53, 91, 140]
},
// Overlay light puck (for dark content)
{
@ -368,7 +370,7 @@
{
"class": "minimap_control",
"viewport_color": [255,255,255,15]
"viewport_color": [53, 91, 140,65]
},
//
@ -390,7 +392,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -401,7 +403,7 @@
{
"class": "tool_tip_control",
// "layer0.texture": "",
"layer0.tint": [235, 238, 242], // 02
"layer0.tint": [95, 98, 102], // 02
"layer0.inner_margin": [1,1],
"layer0.opacity": 1,
"content_margin": [4,4]
@ -420,7 +422,7 @@
{
"class": "status_bar",
"layer0.texture": "",
"layer0.tint": [255, 255, 255], // -00
"layer0.tint": [235, 238, 242], // -00
"layer0.opacity": 1,
"content_margin": 4
},
@ -433,7 +435,7 @@
{
"class": "label_control",
"parents": [{"class": "status_bar"}],
"color": [255, 255, 255] // 02
"color": [165, 168, 172] // 02
},
//
@ -445,7 +447,7 @@
"class": "sidebar_container",
// "layer0.texture": "",
"layer0.opacity": 1,
"layer0.tint": [250, 253, 255], // -01
"layer0.tint": [240, 243, 247], // -01
"layer0.inner_margin": [1,5,2,1],
"content_margin": [0,4,0,0]
},
@ -475,7 +477,7 @@
// Sidebar heading
{
"class": "sidebar_heading",
"color": [255, 255, 255], // 02
"color": [185, 188, 192], // 02
"font.bold": true
},
{
@ -512,7 +514,7 @@
// Sidebar entry
{
"class": "sidebar_label",
"color": [255, 255, 255] // 03
"color": [165, 168, 172] // 03
},
{
"class": "sidebar_label",
@ -538,12 +540,12 @@
{
"class": "sidebar_label",
"parents": [{"class": "tree_row","attributes": ["expandable"]}],
"color": [255, 255, 255] // 03
"color": [125, 128, 132] // 03
},
{
"class": "sidebar_label",
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"color": [255, 255, 255] // 05
"color": [85, 88, 92] // 05
},
{
"class": "sidebar_label",
@ -599,14 +601,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [168, 192, 224] // 08
"layer0.tint": [227, 189, 20] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [247, 209, 40] // 08
"layer0.tint": [227, 189, 20] // 08
},
//
@ -618,14 +620,14 @@
"class": "disclosure_button_control",
"content_margin": [8,8],
"layer0.texture": "Theme - Spacegray/Spacegray/folder-closed.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [123, 161, 210], // 02
"layer0.opacity": 1,
"layer0.inner_margin": 0
},
{
"class": "disclosure_button_control",
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.tint":[255, 255, 255] // 04
"layer0.tint":[53, 91, 140] // 04
},
{
"class": "disclosure_button_control",
@ -660,7 +662,7 @@
"min_size": [64,0],
// "layer0.texture": "",
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255], // -00
"layer0.tint": [205, 208, 212], // -00
"layer0.inner_margin": [8,8]
},
// Hover button state
@ -685,7 +687,7 @@
{
"class": "text_line_control",
// "layer0.texture": "",
"layer0.tint": [255, 255, 255], // -01
"layer0.tint": [205, 208, 212], // -01
"layer0.opacity": 1,
"content_margin": 6
},
@ -700,7 +702,7 @@
// "layer0.texture": "",
"layer0.inner_margin": [0,0],
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255], // -00
"layer0.tint": [225, 228, 232], // -00
"content_margin": 0
},
// Quick panel background
@ -721,14 +723,14 @@
{
"class": "quick_panel",
"row_padding": 8,
"layer0.tint": [255, 255, 255],
"layer0.tint": [213, 216, 220],
"layer0.opacity": 1,
"dark_content": true
},
{
"class": "quick_panel_row",
// "layer0.texture": "",
"layer0.tint": [255, 255, 255], // 01
"layer0.tint": [207, 210, 214], // 01
"layer0.inner_margin": 8,
"layer0.opacity": 1
},
@ -736,26 +738,26 @@
"class": "quick_panel_row",
"attributes": ["selected"],
// "layer0.texture": "",
"layer0.tint": [249, 252, 255] // -01
"layer0.tint": [53, 91, 140] // -01
},
{
"class": "quick_panel_label",
"fg": [255, 255, 255], // 04
"match_fg": [255, 255, 255], // 05
"selected_fg": [255, 255, 255], // 05
"selected_match_fg": [53, 91, 140] // 07
"fg": [125, 128, 132], // 04
"match_fg": [85, 88, 92], // 05
"selected_fg": [203, 241, 255], // 05
"selected_match_fg": [255, 255, 255] // 07
},
{
"class": "quick_panel_path_label",
"fg": [255, 255, 255], // 03
"match_fg": [235, 238, 242], // 04
"selected_fg": [255, 255, 255], // 03
"selected_match_fg": [168, 192, 224] // 04
"fg": [145, 148, 152], // 03
"match_fg": [85, 88, 92], // 04
"selected_fg": [253, 255, 255], // 03
"selected_match_fg": [255, 255, 255] // 04
},
{
"class": "quick_panel_score_label",
"fg": [245, 248, 252], // 03
"selected_fg": [53, 91, 140] // 03
"fg": [145, 148, 152], // 03
"selected_fg": [255, 255, 255] // 03
},
//
@ -873,7 +875,7 @@
{
"class": "icon_regex",
"layer0.texture": "Theme - Spacegray/Spacegray/regex.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [185, 188, 192], // 02
"layer0.opacity": 1,
"content_margin": 8
@ -881,33 +883,33 @@
{
"class": "icon_regex",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [53, 91, 140] // 07
},
// Case sensitive search button
{
"class": "icon_case",
"layer0.texture": "Theme - Spacegray/Spacegray/casesens.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [185, 188, 192], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_case",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [53, 91, 140] // 07
},
// Match whole word search button
{
"class": "icon_whole_word",
"layer0.texture": "Theme - Spacegray/Spacegray/wholeword.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [185, 188, 192], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_whole_word",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [53, 91, 140] // 07
},
//
@ -918,27 +920,27 @@
{
"class": "icon_context",
"layer0.texture": "Theme - Spacegray/Spacegray/context.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [185, 188, 192], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_context",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [53, 91, 140] // 07
},
// Use search buffer
{
"class": "icon_use_buffer",
"layer0.texture": "Theme - Spacegray/Spacegray/buffer.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [185, 188, 192], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_use_buffer",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [53, 91, 140] // 07
},
//
@ -948,40 +950,40 @@
{
"class": "icon_reverse",
"layer0.texture": "Theme - Spacegray/Spacegray/reverse.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [185, 188, 192], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_reverse",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [53, 91, 140] // 07
},
// Search wrap button
{
"class": "icon_wrap",
"layer0.texture": "Theme - Spacegray/Spacegray/wrap.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [185, 188, 192], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_wrap",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [53, 91, 140] // 07
},
// Search in selection button
{
"class": "icon_in_selection",
"layer0.texture": "Theme - Spacegray/Spacegray/selection.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [185, 188, 192], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_in_selection",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [53, 91, 140] // 07
},
//
@ -992,14 +994,14 @@
{
"class": "icon_preserve_case",
"layer0.texture": "Theme - Spacegray/Spacegray/lock.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [185, 188, 192], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_preserve_case",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [53, 91, 140] // 07
},
//
@ -1010,14 +1012,14 @@
{
"class": "icon_highlight",
"layer0.texture": "Theme - Spacegray/Spacegray/highlight.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [185, 188, 192], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_highlight",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [53, 91, 140] // 07
},
//
@ -1027,7 +1029,7 @@
"class": "disclosure_button_control",
"settings": ["spacegray_color_expanded_folder"],
"attributes": ["expanded"],
"layer0.tint": [255, 255, 255] // 0A
"layer0.tint": [53, 91, 140] // 0A
},
//
@ -1062,3 +1064,4 @@
}
]

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [242, 137, 114] // 08
"layer0.tint": [54, 49, 44] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 157, 134] // 08
"layer0.tint": [74, 69, 64] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [242, 188, 121] // 08
"layer0.tint": [248, 187, 57] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 207, 77] // 08
"layer0.tint": [248, 187, 57] // 08
},
//
@ -750,7 +750,7 @@
"fg": [64, 59, 54], // 03
"match_fg": [44, 39, 34], // 04
"selected_fg": [214, 209, 204], // 03
"selected_match_fg": [242, 188, 121] // 04
"selected_match_fg": [242, 137, 114] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [0, 224, 140] // 08
"layer0.tint": [43, 34, 28] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [20, 244, 160] // 08
"layer0.tint": [63, 54, 48] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [157, 130, 98] // 08
"layer0.tint": [0, 224, 140] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [20, 244, 160] // 08
"layer0.tint": [0, 224, 140] // 08
},
//
@ -750,7 +750,7 @@
"fg": [53, 44, 38], // 03
"match_fg": [33, 24, 18], // 04
"selected_fg": [203, 194, 188], // 03
"selected_match_fg": [157, 130, 98] // 04
"selected_match_fg": [0, 224, 140] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [181, 219, 153] // 08
"layer0.tint": [64, 54, 53] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [201, 239, 173] // 08
"layer0.tint": [84, 74, 73] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [233, 200, 101] // 08
"layer0.tint": [181, 219, 153] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [201, 239, 173] // 08
"layer0.tint": [181, 219, 153] // 08
},
//
@ -750,7 +750,7 @@
"fg": [74, 64, 63], // 03
"match_fg": [54, 44, 43], // 04
"selected_fg": [224, 214, 213], // 03
"selected_match_fg": [233, 200, 101] // 04
"selected_match_fg": [181, 219, 153] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [228, 132, 178] // 08
"layer0.tint": [23, 20, 23] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [248, 152, 198] // 08
"layer0.tint": [43, 40, 43] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [177, 166, 202] // 08
"layer0.tint": [158, 178, 217] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [178, 198, 237] // 08
"layer0.tint": [158, 178, 217] // 08
},
//
@ -750,7 +750,7 @@
"fg": [33, 30, 33], // 03
"match_fg": [13, 10, 13], // 04
"selected_fg": [183, 180, 183], // 03
"selected_match_fg": [177, 166, 202] // 04
"selected_match_fg": [228, 132, 178] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [197, 108, 108] // 08
"layer0.tint": [34, 34, 34] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [217, 128, 128] // 08
"layer0.tint": [54, 54, 54] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [148, 116, 169] // 08
"layer0.tint": [197, 108, 108] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [217, 128, 128] // 08
"layer0.tint": [197, 108, 108] // 08
},
//
@ -750,7 +750,7 @@
"fg": [44, 44, 44], // 03
"match_fg": [24, 24, 24], // 04
"selected_fg": [194, 194, 194], // 03
"selected_match_fg": [148, 116, 169] // 04
"selected_match_fg": [197, 108, 108] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255] // 08
"layer0.tint": [45, 49, 51] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255] // 08
"layer0.tint": [65, 69, 71] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [222, 51, 60] // 08
"layer0.tint": [55, 144, 222] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [75, 164, 242] // 08
"layer0.tint": [55, 144, 222] // 08
},
//
@ -750,7 +750,7 @@
"fg": [55, 59, 61], // 03
"match_fg": [35, 39, 41], // 04
"selected_fg": [205, 209, 211], // 03
"selected_match_fg": [222, 51, 60] // 04
"selected_match_fg": [255, 255, 255] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [188, 212, 42] // 08
"layer0.tint": [43, 42, 39] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [208, 232, 62] // 08
"layer0.tint": [63, 62, 59] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [38, 166, 166] // 08
"layer0.tint": [188, 212, 42] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [208, 232, 62] // 08
"layer0.tint": [188, 212, 42] // 08
},
//
@ -750,7 +750,7 @@
"fg": [53, 52, 49], // 03
"match_fg": [33, 32, 29], // 04
"selected_fg": [203, 202, 199], // 03
"selected_match_fg": [38, 166, 166] // 04
"selected_match_fg": [188, 212, 42] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [188, 212, 42] // 08
"layer0.tint": [43, 48, 59] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [208, 232, 62] // 08
"layer0.tint": [63, 68, 79] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [38, 166, 166] // 08
"layer0.tint": [188, 212, 42] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [208, 232, 62] // 08
"layer0.tint": [188, 212, 42] // 08
},
//
@ -750,7 +750,7 @@
"fg": [53, 58, 69], // 03
"match_fg": [33, 38, 49], // 04
"selected_fg": [203, 208, 219], // 03
"selected_match_fg": [38, 166, 166] // 04
"selected_match_fg": [188, 212, 42] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [214, 225, 199] // 08
"layer0.tint": [35, 32, 28] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [234, 245, 219] // 08
"layer0.tint": [55, 52, 48] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [148, 199, 182] // 08
"layer0.tint": [244, 211, 112] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 231, 132] // 08
"layer0.tint": [244, 211, 112] // 08
},
//
@ -750,7 +750,7 @@
"fg": [45, 42, 38], // 03
"match_fg": [25, 22, 18], // 04
"selected_fg": [195, 192, 188], // 03
"selected_match_fg": [148, 199, 182] // 04
"selected_match_fg": [214, 225, 199] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 93, 128] // 08
"layer0.tint": [28, 22, 24] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 113, 148] // 08
"layer0.tint": [48, 42, 44] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [245, 46, 98] // 08
"layer0.tint": [255, 69, 62] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 89, 82] // 08
"layer0.tint": [255, 69, 62] // 08
},
//
@ -750,7 +750,7 @@
"fg": [38, 32, 34], // 03
"match_fg": [18, 12, 14], // 04
"selected_fg": [188, 182, 184], // 03
"selected_match_fg": [245, 46, 98] // 04
"selected_match_fg": [255, 93, 128] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [184, 102, 250] // 08
"layer0.tint": [46, 43, 44] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [204, 122, 255] // 08
"layer0.tint": [66, 63, 64] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [196, 145, 196] // 08
"layer0.tint": [184, 102, 250] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [204, 122, 255] // 08
"layer0.tint": [184, 102, 250] // 08
},
//
@ -750,7 +750,7 @@
"fg": [56, 53, 54], // 03
"match_fg": [36, 33, 34], // 04
"selected_fg": [206, 203, 204], // 03
"selected_match_fg": [196, 145, 196] // 04
"selected_match_fg": [184, 102, 250] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 190, 64] // 08
"layer0.tint": [22, 24, 26] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 210, 84] // 08
"layer0.tint": [42, 44, 46] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [179, 204, 87] // 08
"layer0.tint": [199, 143, 235] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [219, 163, 255] // 08
"layer0.tint": [199, 143, 235] // 08
},
//
@ -750,7 +750,7 @@
"fg": [32, 34, 36], // 03
"match_fg": [12, 14, 16], // 04
"selected_fg": [182, 184, 186], // 03
"selected_match_fg": [179, 204, 87] // 04
"selected_match_fg": [255, 190, 64] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [149, 194, 232] // 08
"layer0.tint": [46, 44, 43] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [169, 214, 252] // 08
"layer0.tint": [66, 64, 63] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [78, 93, 132] // 08
"layer0.tint": [255, 187, 41] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 207, 61] // 08
"layer0.tint": [255, 187, 41] // 08
},
//
@ -750,7 +750,7 @@
"fg": [56, 54, 53], // 03
"match_fg": [36, 34, 33], // 04
"selected_fg": [206, 204, 203], // 03
"selected_match_fg": [78, 93, 132] // 04
"selected_match_fg": [149, 194, 232] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [240, 242, 235] // 08
"layer0.tint": [34, 34, 34] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255] // 08
"layer0.tint": [54, 54, 54] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [178, 222, 98] // 08
"layer0.tint": [129, 233, 17] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [149, 253, 37] // 08
"layer0.tint": [129, 233, 17] // 08
},
//
@ -750,7 +750,7 @@
"fg": [44, 44, 44], // 03
"match_fg": [24, 24, 24], // 04
"selected_fg": [194, 194, 194], // 03
"selected_match_fg": [178, 222, 98] // 04
"selected_match_fg": [240, 242, 235] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [203, 218, 213] // 08
"layer0.tint": [25, 25, 31] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [223, 238, 233] // 08
"layer0.tint": [45, 45, 51] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [86, 105, 129] // 08
"layer0.tint": [158, 178, 217] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [178, 198, 237] // 08
"layer0.tint": [158, 178, 217] // 08
},
//
@ -750,7 +750,7 @@
"fg": [35, 35, 41], // 03
"match_fg": [15, 15, 21], // 04
"selected_fg": [185, 185, 191], // 03
"selected_match_fg": [86, 105, 129] // 04
"selected_match_fg": [203, 218, 213] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [199, 175, 63] // 08
"layer0.tint": [41, 45, 48] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [219, 195, 83] // 08
"layer0.tint": [61, 65, 68] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -606,7 +606,7 @@
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 255, 239] // 08
"layer0.tint": [250, 255, 219] // 08
},
//
@ -750,7 +750,7 @@
"fg": [51, 55, 58], // 03
"match_fg": [31, 35, 38], // 04
"selected_fg": [201, 205, 208], // 03
"selected_match_fg": [250, 255, 219] // 04
"selected_match_fg": [199, 175, 63] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [128, 141, 211] // 08
"layer0.tint": [57, 57, 57] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [148, 161, 231] // 08
"layer0.tint": [77, 77, 77] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -606,7 +606,7 @@
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [98, 181, 243] // 08
"layer0.tint": [78, 161, 223] // 08
},
//
@ -750,7 +750,7 @@
"fg": [67, 67, 67], // 03
"match_fg": [47, 47, 47], // 04
"selected_fg": [217, 217, 217], // 03
"selected_match_fg": [78, 161, 223] // 04
"selected_match_fg": [128, 141, 211] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [237, 229, 116] // 08
"layer0.tint": [34, 34, 34] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 249, 136] // 08
"layer0.tint": [54, 54, 54] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [252, 145, 58] // 08
"layer0.tint": [237, 229, 116] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 249, 136] // 08
"layer0.tint": [237, 229, 116] // 08
},
//
@ -750,7 +750,7 @@
"fg": [44, 44, 44], // 03
"match_fg": [24, 24, 24], // 04
"selected_fg": [194, 194, 194], // 03
"selected_match_fg": [252, 145, 58] // 04
"selected_match_fg": [237, 229, 116] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [189, 245, 34] // 08
"layer0.tint": [46, 44, 43] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [209, 255, 54] // 08
"layer0.tint": [66, 64, 63] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [237, 242, 82] // 08
"layer0.tint": [228, 255, 51] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [248, 255, 71] // 08
"layer0.tint": [228, 255, 51] // 08
},
//
@ -750,7 +750,7 @@
"fg": [56, 54, 53], // 03
"match_fg": [36, 34, 33], // 04
"selected_fg": [206, 204, 203], // 03
"selected_match_fg": [237, 242, 82] // 04
"selected_match_fg": [189, 245, 34] // 04
},
{
"class": "quick_panel_score_label",

@ -8,7 +8,7 @@
{
"class": "tabset_control",
"layer0.texture": "",
"layer0.tint": [235, 250, 248], // -00
"layer0.tint": [205, 220, 218], // -00
"layer0.inner_margin": 0,
"layer0.opacity": 1,
"content_margin": 0,
@ -30,7 +30,7 @@
"max_margin_trim": 0,
"hit_test_level": 0,
"layer0.texture": "",
"layer0.tint": [245, 255, 255], // -00
"layer0.tint": [215, 230, 228], // -00
"layer0.inner_margin": [5,5],
"layer0.opacity": 1
},
@ -69,7 +69,7 @@
"class": "tab_close_button",
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.opacity": 0,
"layer0.tint": [255, 255, 255] // 03
"layer0.tint": [192, 255, 255] // 03
},
{
"class": "tab_close_button",
@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [76, 215, 224] // 08
"layer0.tint": [37, 128, 138] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [96, 235, 244] // 08
"layer0.tint": [245, 255, 255] // 08
},
{
"class": "tab_close_button",
@ -153,12 +153,12 @@
{
"class": "tab_label",
"fade": true,
"fg": [255, 255, 255] // 03
"fg": [165, 180, 178] // 03
},
{
"class": "tab_label",
"parents": [{"class": "tab_control","attributes": ["hover"]}],
"fg": [255, 255, 255]// 05
"fg": [75, 90, 88]// 05
},
{
"class": "tab_label",
@ -200,7 +200,7 @@
{
"class": "fold_button_control",
"layer0.texture": "Theme - Spacegray/Spacegray/folder-closed.png",
"layer0.tint": [255, 255, 255], // 04
"layer0.tint": [145, 160, 158], // 04
"layer0.opacity": 0.5,
"layer0.inner_margin": 0,
"content_margin": [8,8]
@ -312,7 +312,8 @@
"layer0.texture": "",
"layer0.inner_margin": [0,5],
"content_margin": [2,32],
"blur": true
"blur": true,
"layer0.tint": [37, 128, 138]
},
// Overlay horizontal puck
{
@ -322,7 +323,8 @@
"layer0.texture": "",
"layer0.inner_margin": [5,0],
"content_margin": [16,2],
"blur": true
"blur": true,
"layer0.tint": [37, 128, 138]
},
// Overlay light puck (for dark content)
{
@ -368,7 +370,7 @@
{
"class": "minimap_control",
"viewport_color": [255,255,255,15]
"viewport_color": [37, 128, 138,65]
},
//
@ -390,7 +392,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -401,7 +403,7 @@
{
"class": "tool_tip_control",
// "layer0.texture": "",
"layer0.tint": [215, 230, 228], // 02
"layer0.tint": [75, 90, 88], // 02
"layer0.inner_margin": [1,1],
"layer0.opacity": 1,
"content_margin": [4,4]
@ -420,7 +422,7 @@
{
"class": "status_bar",
"layer0.texture": "",
"layer0.tint": [235, 250, 248], // -00
"layer0.tint": [215, 230, 228], // -00
"layer0.opacity": 1,
"content_margin": 4
},
@ -433,7 +435,7 @@
{
"class": "label_control",
"parents": [{"class": "status_bar"}],
"color": [255, 255, 255] // 02
"color": [145, 160, 158] // 02
},
//
@ -445,7 +447,7 @@
"class": "sidebar_container",
// "layer0.texture": "",
"layer0.opacity": 1,
"layer0.tint": [230, 245, 243], // -01
"layer0.tint": [220, 235, 233], // -01
"layer0.inner_margin": [1,5,2,1],
"content_margin": [0,4,0,0]
},
@ -475,7 +477,7 @@
// Sidebar heading
{
"class": "sidebar_heading",
"color": [255, 255, 255], // 02
"color": [165, 180, 178], // 02
"font.bold": true
},
{
@ -512,7 +514,7 @@
// Sidebar entry
{
"class": "sidebar_label",
"color": [255, 255, 255] // 03
"color": [145, 160, 158] // 03
},
{
"class": "sidebar_label",
@ -538,12 +540,12 @@
{
"class": "sidebar_label",
"parents": [{"class": "tree_row","attributes": ["expandable"]}],
"color": [255, 255, 255] // 03
"color": [105, 120, 118] // 03
},
{
"class": "sidebar_label",
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"color": [255, 255, 255] // 05
"color": [65, 80, 78] // 05
},
{
"class": "sidebar_label",
@ -599,14 +601,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [105, 173, 181] // 08
"layer0.tint": [76, 215, 224] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [96, 235, 244] // 08
"layer0.tint": [76, 215, 224] // 08
},
//
@ -618,14 +620,14 @@
"class": "disclosure_button_control",
"content_margin": [8,8],
"layer0.texture": "Theme - Spacegray/Spacegray/folder-closed.png",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [107, 198, 208], // 02
"layer0.opacity": 1,
"layer0.inner_margin": 0
},
{
"class": "disclosure_button_control",
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.tint":[255, 255, 255] // 04
"layer0.tint":[37, 128, 138] // 04
},
{
"class": "disclosure_button_control",
@ -660,7 +662,7 @@
"min_size": [64,0],
// "layer0.texture": "",
"layer0.opacity": 1,
"layer0.tint": [235, 250, 248], // -00
"layer0.tint": [185, 200, 198], // -00
"layer0.inner_margin": [8,8]
},
// Hover button state
@ -685,7 +687,7 @@
{
"class": "text_line_control",
// "layer0.texture": "",
"layer0.tint": [235, 250, 248], // -01
"layer0.tint": [185, 200, 198], // -01
"layer0.opacity": 1,
"content_margin": 6
},
@ -700,7 +702,7 @@
// "layer0.texture": "",
"layer0.inner_margin": [0,0],
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255], // -00
"layer0.tint": [205, 220, 218], // -00
"content_margin": 0
},
// Quick panel background
@ -721,14 +723,14 @@
{
"class": "quick_panel",
"row_padding": 8,
"layer0.tint": [255, 255, 255],
"layer0.tint": [193, 208, 206],
"layer0.opacity": 1,
"dark_content": true
},
{
"class": "quick_panel_row",
// "layer0.texture": "",
"layer0.tint": [255, 255, 255], // 01
"layer0.tint": [187, 202, 200], // 01
"layer0.inner_margin": 8,
"layer0.opacity": 1
},
@ -736,26 +738,26 @@
"class": "quick_panel_row",
"attributes": ["selected"],
// "layer0.texture": "",
"layer0.tint": [229, 244, 242] // -01
"layer0.tint": [37, 128, 138] // -01
},
{
"class": "quick_panel_label",
"fg": [255, 255, 255], // 04
"match_fg": [255, 255, 255], // 05
"selected_fg": [255, 255, 255], // 05
"selected_match_fg": [37, 128, 138] // 07
"fg": [105, 120, 118], // 04
"match_fg": [65, 80, 78], // 05
"selected_fg": [187, 255, 255], // 05
"selected_match_fg": [255, 255, 255] // 07
},
{
"class": "quick_panel_path_label",
"fg": [235, 250, 248], // 03
"match_fg": [215, 230, 228], // 04
"selected_fg": [255, 255, 255], // 03
"selected_match_fg": [105, 173, 181] // 04
"fg": [125, 140, 138], // 03
"match_fg": [65, 80, 78], // 04
"selected_fg": [237, 255, 255], // 03
"selected_match_fg": [255, 255, 255] // 04
},
{
"class": "quick_panel_score_label",
"fg": [225, 240, 238], // 03
"selected_fg": [37, 128, 138] // 03
"fg": [125, 140, 138], // 03
"selected_fg": [255, 255, 255] // 03
},
//
@ -873,7 +875,7 @@
{
"class": "icon_regex",
"layer0.texture": "Theme - Spacegray/Spacegray/regex.png",
"layer0.tint": [235, 250, 248], // 02
"layer0.tint": [165, 180, 178], // 02
"layer0.opacity": 1,
"content_margin": 8
@ -881,33 +883,33 @@
{
"class": "icon_regex",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [37, 128, 138] // 07
},
// Case sensitive search button
{
"class": "icon_case",
"layer0.texture": "Theme - Spacegray/Spacegray/casesens.png",
"layer0.tint": [235, 250, 248], // 02
"layer0.tint": [165, 180, 178], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_case",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [37, 128, 138] // 07
},
// Match whole word search button
{
"class": "icon_whole_word",
"layer0.texture": "Theme - Spacegray/Spacegray/wholeword.png",
"layer0.tint": [235, 250, 248], // 02
"layer0.tint": [165, 180, 178], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_whole_word",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [37, 128, 138] // 07
},
//
@ -918,27 +920,27 @@
{
"class": "icon_context",
"layer0.texture": "Theme - Spacegray/Spacegray/context.png",
"layer0.tint": [235, 250, 248], // 02
"layer0.tint": [165, 180, 178], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_context",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [37, 128, 138] // 07
},
// Use search buffer
{
"class": "icon_use_buffer",
"layer0.texture": "Theme - Spacegray/Spacegray/buffer.png",
"layer0.tint": [235, 250, 248], // 02
"layer0.tint": [165, 180, 178], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_use_buffer",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [37, 128, 138] // 07
},
//
@ -948,40 +950,40 @@
{
"class": "icon_reverse",
"layer0.texture": "Theme - Spacegray/Spacegray/reverse.png",
"layer0.tint": [235, 250, 248], // 02
"layer0.tint": [165, 180, 178], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_reverse",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [37, 128, 138] // 07
},
// Search wrap button
{
"class": "icon_wrap",
"layer0.texture": "Theme - Spacegray/Spacegray/wrap.png",
"layer0.tint": [235, 250, 248], // 02
"layer0.tint": [165, 180, 178], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_wrap",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [37, 128, 138] // 07
},
// Search in selection button
{
"class": "icon_in_selection",
"layer0.texture": "Theme - Spacegray/Spacegray/selection.png",
"layer0.tint": [235, 250, 248], // 02
"layer0.tint": [165, 180, 178], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_in_selection",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [37, 128, 138] // 07
},
//
@ -992,14 +994,14 @@
{
"class": "icon_preserve_case",
"layer0.texture": "Theme - Spacegray/Spacegray/lock.png",
"layer0.tint": [235, 250, 248], // 02
"layer0.tint": [165, 180, 178], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_preserve_case",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [37, 128, 138] // 07
},
//
@ -1010,14 +1012,14 @@
{
"class": "icon_highlight",
"layer0.texture": "Theme - Spacegray/Spacegray/highlight.png",
"layer0.tint": [235, 250, 248], // 02
"layer0.tint": [165, 180, 178], // 02
"layer0.opacity": 1,
"content_margin": 8
},
{
"class": "icon_highlight",
"parents": [{"class": "icon_button_control","attributes": ["selected"]}],
"layer0.tint": [255, 255, 255] // 07
"layer0.tint": [37, 128, 138] // 07
},
//
@ -1027,7 +1029,7 @@
"class": "disclosure_button_control",
"settings": ["spacegray_color_expanded_folder"],
"attributes": ["expanded"],
"layer0.tint": [255, 255, 255] // 0A
"layer0.tint": [37, 128, 138] // 0A
},
//
@ -1062,3 +1064,4 @@
}
]

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [240, 49, 19] // 08
"layer0.tint": [46, 44, 43] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 69, 39] // 08
"layer0.tint": [66, 64, 63] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -606,7 +606,7 @@
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 207, 61] // 08
"layer0.tint": [255, 187, 41] // 08
},
//
@ -750,7 +750,7 @@
"fg": [56, 54, 53], // 03
"match_fg": [36, 34, 33], // 04
"selected_fg": [206, 204, 203], // 03
"selected_match_fg": [255, 187, 41] // 04
"selected_match_fg": [240, 49, 19] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [228, 86, 53] // 08
"layer0.tint": [21, 25, 29] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [248, 106, 73] // 08
"layer0.tint": [41, 45, 49] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [93, 103, 173] // 08
"layer0.tint": [247, 162, 27] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 182, 47] // 08
"layer0.tint": [247, 162, 27] // 08
},
//
@ -750,7 +750,7 @@
"fg": [31, 35, 39], // 03
"match_fg": [11, 15, 19], // 04
"selected_fg": [181, 185, 189], // 03
"selected_match_fg": [93, 103, 173] // 04
"selected_match_fg": [228, 86, 53] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [253, 159, 89] // 08
"layer0.tint": [42, 47, 49] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 179, 109] // 08
"layer0.tint": [62, 67, 69] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [117, 161, 164] // 08
"layer0.tint": [184, 205, 68] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [204, 225, 88] // 08
"layer0.tint": [184, 205, 68] // 08
},
//
@ -750,7 +750,7 @@
"fg": [52, 57, 59], // 03
"match_fg": [32, 37, 39], // 04
"selected_fg": [202, 207, 209], // 03
"selected_match_fg": [117, 161, 164] // 04
"selected_match_fg": [253, 159, 89] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [224, 221, 235] // 08
"layer0.tint": [25, 25, 29] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [244, 241, 255] // 08
"layer0.tint": [45, 45, 49] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [196, 53, 53] // 08
"layer0.tint": [100, 174, 179] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [120, 194, 199] // 08
"layer0.tint": [100, 174, 179] // 08
},
//
@ -750,7 +750,7 @@
"fg": [35, 35, 39], // 03
"match_fg": [15, 15, 19], // 04
"selected_fg": [185, 185, 189], // 03
"selected_match_fg": [196, 53, 53] // 04
"selected_match_fg": [224, 221, 235] // 04
},
{
"class": "quick_panel_score_label",

@ -50,7 +50,7 @@
"class": "tab_control",
"attributes": ["selected"],
"layer0.texture": "",
"layer0.tint": [255, 255, 255] // 00
"layer0.tint": [38, 127, 181] // 00
},
// Tab dirty state (close button hidden)
{
@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255] // 08
"layer0.tint": [20, 25, 31] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 255, 255] // 08
"layer0.tint": [40, 45, 51] // 08
},
{
"class": "tab_close_button",
@ -330,7 +330,7 @@
"settings": ["overlay_scroll_bars"],
"attributes": ["dark"],
// "layer0.texture": "",
"layer0.tint": [255, 255, 255] // 02
"layer0.tint": [38, 127, 181] // 02
},
// Overlay light horizontal puck (for dark content)
@ -339,7 +339,7 @@
"settings": ["overlay_scroll_bars"],
"attributes": ["horizontal","dark"],
// "layer0.texture": "",
"layer0.tint": [255, 255, 255] // 02
"layer0.tint": [38, 127, 181] // 02
},
//
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -462,7 +462,7 @@
{
"class": "tree_row",
// "layer0.texture": "",
"layer0.tint": [255, 255, 255], // 01
"layer0.tint": [38, 127, 181], // 01
"layer0.opacity": 0,
"layer0.inner_margin": [1,1]
},
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [38, 127, 181] // 08
"layer0.tint": [110, 226, 255] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [130, 246, 255] // 08
"layer0.tint": [110, 226, 255] // 08
},
//
@ -668,14 +668,14 @@
"class": "button_control",
"attributes": ["hover"],
// "layer0.texture": "",
"layer0.tint": [255, 255, 255] // -01
"layer0.tint": [38, 127, 181] // -01
},
// Pressed button state
{
"class": "button_control",
"attributes": ["pressed"],
// "layer0.texture": "",
"layer0.tint": [215, 215, 215] // -00
"layer0.tint": [0, 87, 141] // -00
},
//
// TEXT INPUT FIELD
@ -743,19 +743,19 @@
"fg": [140, 145, 151], // 04
"match_fg": [180, 185, 191], // 05
"selected_fg": [255, 255, 255], // 05
"selected_match_fg": [255, 255, 255] // 07
"selected_match_fg": [38, 127, 181] // 07
},
{
"class": "quick_panel_path_label",
"fg": [30, 35, 41], // 03
"match_fg": [10, 15, 21], // 04
"selected_fg": [180, 185, 191], // 03
"selected_match_fg": [38, 127, 181] // 04
"selected_match_fg": [255, 255, 255] // 04
},
{
"class": "quick_panel_score_label",
"fg": [20, 25, 31], // 03
"selected_fg": [255, 255, 255] // 03
"selected_fg": [38, 127, 181] // 03
},
//
@ -799,7 +799,7 @@
{
"class": "table_row",
// "layer0.texture": "",
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [38, 127, 181], // 02
"layer0.opacity": 0,
"layer0.inner_margin": [3,1]
},

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [232, 218, 94] // 08
"layer0.tint": [26, 27, 29] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [252, 238, 114] // 08
"layer0.tint": [46, 47, 49] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [146, 181, 95] // 08
"layer0.tint": [232, 218, 94] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [252, 238, 114] // 08
"layer0.tint": [232, 218, 94] // 08
},
//
@ -750,7 +750,7 @@
"fg": [36, 37, 39], // 03
"match_fg": [16, 17, 19], // 04
"selected_fg": [186, 187, 189], // 03
"selected_match_fg": [146, 181, 95] // 04
"selected_match_fg": [232, 218, 94] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [235, 182, 38] // 08
"layer0.tint": [43, 42, 39] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [255, 202, 58] // 08
"layer0.tint": [63, 62, 59] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [57, 184, 31] // 08
"layer0.tint": [235, 182, 38] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [255, 202, 58] // 08
"layer0.tint": [235, 182, 38] // 08
},
//
@ -750,7 +750,7 @@
"fg": [53, 52, 49], // 03
"match_fg": [33, 32, 29], // 04
"selected_fg": [203, 202, 199], // 03
"selected_match_fg": [57, 184, 31] // 04
"selected_match_fg": [235, 182, 38] // 04
},
{
"class": "quick_panel_score_label",

@ -87,7 +87,7 @@
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [188, 212, 42] // 08
"layer0.tint": [34, 34, 34] // 08
},
{
"class": "tab_close_button",
@ -115,7 +115,7 @@
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"attributes": ["hover"],
"layer0.opacity": 1,
"layer0.tint": [208, 232, 62] // 08
"layer0.tint": [54, 54, 54] // 08
},
{
"class": "tab_close_button",
@ -390,7 +390,7 @@
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.bold": true,
"color": [255, 255, 255] // 0C
"color": [255, 255, 255]// 0C
},
//
@ -599,14 +599,14 @@
{
"class": "close_button",
"attributes": ["hover"],
"layer0.tint": [156, 125, 219] // 08
"layer0.tint": [188, 212, 42] // 08
},
{
"class": "close_button",
"attributes": ["dirty", "hover"],
"parents": [{"class": "tree_row","attributes": ["hover"]}],
"layer0.texture": "Theme - Spacegray/Spacegray/close.png",
"layer0.tint": [208, 232, 62] // 08
"layer0.tint": [188, 212, 42] // 08
},
//
@ -750,7 +750,7 @@
"fg": [44, 44, 44], // 03
"match_fg": [24, 24, 24], // 04
"selected_fg": [194, 194, 194], // 03
"selected_match_fg": [156, 125, 219] // 04
"selected_match_fg": [188, 212, 42] // 04
},
{
"class": "quick_panel_score_label",