Skip to content

Commit 361ac19

Browse files
committed
17.1
1 parent 37870f2 commit 361ac19

File tree

5 files changed

+83
-9
lines changed

5 files changed

+83
-9
lines changed

README.md

100755100644
+6-2
Original file line numberDiff line numberDiff line change
@@ -97,19 +97,22 @@ Activate the `Theme` by modifying your user preferences file, which you can find
9797
"Seti_seablue_scrollbar"
9898

9999
// sidebar
100+
// icons
100101
"Seti_ClosedFolder_same" // same icon as the "Opened folder"
101102
"Seti_ClosedFolder_remove" // remove closed_folder icon
102103
"Seti_ClosedFolder_dots" // change closed_folder icon to dot
103104
"Seti_ClosedFolder_anim" // animate sidebar folder icons
105+
"Seti_sb_no_icons" // (issues/133)
106+
"Seti_sb_blank" // (issues/133)
107+
// padding
104108
"Seti_sb_small_padding" // sidebar entries padding = 3
105109
"Seti_sb_big_padding" // sidebar entries padding = 10
106110
"Seti_sb_tree_med" // sidebar tree padding = 15
107111
"Seti_sb_tree_small" // sidebar tree padding = 10
108112
"Seti_sb_tree_tiny" // (issues/88)
109113
"Seti_sb_tree_miny" // (issues/88)
110114
"Seti_show_group_arrows" // show the folder/group arrows in sidebar
111-
"Seti_sb_no_icons" // (issues/133)
112-
"Seti_sb_blank" // (issues/133)
115+
// labels
113116
"Seti_bold_slctdfile_labels" // make the sidebar selected file text in bold
114117
"Seti_sidebar_font_size_12" // (issues/115)
115118
"Seti_sidebar_font_size_13" // (issues/115)
@@ -119,6 +122,7 @@ Activate the `Theme` by modifying your user preferences file, which you can find
119122
"Seti_sidebar_font_Hack" // (issues/115)
120123
"Seti_sidebar_font_Source" // (issues/115)
121124
"Seti_heading_font_12" // heading font size = 12
125+
// heading
122126
"Seti_bold_heading" // make heading font in bold
123127
"Seti_no_heading" // remove the "folder,group 1,etc.."
124128
"Seti_top_heading_big" // sidebar top header img big

Seti.sublime-theme

+33-3
Original file line numberDiff line numberDiff line change
@@ -532,14 +532,14 @@
532532
//--------------------------------------------------------
533533

534534
{
535-
"class": "progress_bar_control",
536-
"layer0.tint": [94,235,184],
535+
"class": "progress_bar_control", // = sheet_container_control
536+
"layer0.tint": [25,31,33],
537537
"layer0.opacity": { "target": 1.0, "speed": 10.0, "interpolation": "smoothstep" }
538538
},
539539
{
540540
"class": "progress_gauge_control",
541541
"layer0.opacity": { "target": 1.0, "speed": 10.0, "interpolation": "smoothstep" },
542-
"layer0.tint": [110, 29, 186],
542+
"layer0.tint": [79, 153, 211],
543543
"content_margin": [0, 6]
544544
},
545545

@@ -2129,6 +2129,12 @@
21292129
"attributes": ["horizontal"],
21302130
"layer0.tint":[244,67,54]
21312131
},
2132+
// progress bar
2133+
{
2134+
"class": "progress_gauge_control",
2135+
"settings": ["Seti_accent_red"],
2136+
"layer0.tint":[244,67,54]
2137+
},
21322138

21332139
// purple
21342140
// ////////////////////////////////////////////////////////
@@ -2370,6 +2376,12 @@
23702376
"attributes": ["horizontal"],
23712377
"layer0.tint":[171,71,188]
23722378
},
2379+
// progress bar
2380+
{
2381+
"class": "progress_gauge_control",
2382+
"settings": ["Seti_accent_red"],
2383+
"layer0.tint":[171,71,188],
2384+
},
23732385

23742386
// lime
23752387
// ////////////////////////////////////////////////////////
@@ -2611,6 +2623,12 @@
26112623
"attributes": ["horizontal"],
26122624
"layer0.tint":[124,179,76]
26132625
},
2626+
// progress bar
2627+
{
2628+
"class": "progress_gauge_control",
2629+
"settings": ["Seti_accent_red"],
2630+
"layer0.tint":[124,179,76]
2631+
},
26142632

26152633
// indigo
26162634
// ////////////////////////////////////////////////////////
@@ -2852,6 +2870,12 @@
28522870
"attributes": ["horizontal"],
28532871
"layer0.tint":[63,81,181]
28542872
},
2873+
// progress bar
2874+
{
2875+
"class": "progress_gauge_control",
2876+
"settings": ["Seti_accent_red"],
2877+
"layer0.tint":[63,81,181]
2878+
},
28552879

28562880
// teal
28572881
// ////////////////////////////////////////////////////////
@@ -3093,6 +3117,12 @@
30933117
"attributes": ["horizontal"],
30943118
"layer0.tint":[0,150,136]
30953119
},
3120+
// progress bar
3121+
{
3122+
"class": "progress_gauge_control",
3123+
"settings": ["Seti_accent_red"],
3124+
"layer0.tint":[0,150,136]
3125+
},
30963126

30973127
// seablue
30983128
// ////////////////////////////////////////////////////////

Seti_orig.sublime-theme

+38-3
Original file line numberDiff line numberDiff line change
@@ -485,13 +485,13 @@
485485

486486
{
487487
"class": "progress_bar_control", // = sheet_container_control
488-
"layer0.tint": [94,235,184],
488+
"layer0.tint": [25,31,33],
489489
"layer0.opacity": { "target": 1.0, "speed": 10.0, "interpolation": "smoothstep" }
490490
},
491491
{
492492
"class": "progress_gauge_control",
493493
"layer0.opacity": { "target": 1.0, "speed": 10.0, "interpolation": "smoothstep" },
494-
"layer0.tint": [110, 29, 186],
494+
"layer0.tint": [79, 153, 211],
495495
"content_margin": [0, 6]
496496
},
497497

@@ -543,7 +543,6 @@
543543
{
544544
"class": "status_bar",
545545
"layer0.tint": [13,16,17],
546-
// "layer0.tint": [15, 19, 23],
547546
"layer0.opacity": { "target": 1.0, "speed": 10.0, "interpolation": "smoothstep" },
548547
"content_margin": [20, 10, 10, 10]
549548
},
@@ -2268,6 +2267,12 @@
22682267
"attributes": ["horizontal"],
22692268
"layer0.tint":[244,67,54]
22702269
},
2270+
// progress bar
2271+
{
2272+
"class": "progress_gauge_control",
2273+
"settings": ["Seti_accent_red"],
2274+
"layer0.tint":[244,67,54]
2275+
},
22712276

22722277
// purple
22732278
// ////////////////////////////////////////////////////////
@@ -2598,6 +2603,12 @@
25982603
"attributes": ["horizontal"],
25992604
"layer0.tint":[171,71,188]
26002605
},
2606+
// progress bar
2607+
{
2608+
"class": "progress_gauge_control",
2609+
"settings": ["Seti_accent_red"],
2610+
"layer0.tint":[171,71,188],
2611+
},
26012612

26022613
// lime
26032614
// ////////////////////////////////////////////////////////
@@ -2928,6 +2939,12 @@
29282939
"attributes": ["horizontal"],
29292940
"layer0.tint":[124,179,76]
29302941
},
2942+
// progress bar
2943+
{
2944+
"class": "progress_gauge_control",
2945+
"settings": ["Seti_accent_red"],
2946+
"layer0.tint":[124,179,76]
2947+
},
29312948

29322949
// indigo
29332950
// ////////////////////////////////////////////////////////
@@ -3258,6 +3275,12 @@
32583275
"attributes": ["horizontal"],
32593276
"layer0.tint":[63,81,181]
32603277
},
3278+
// progress bar
3279+
{
3280+
"class": "progress_gauge_control",
3281+
"settings": ["Seti_accent_red"],
3282+
"layer0.tint":[63,81,181]
3283+
},
32613284

32623285
// teal
32633286
// ////////////////////////////////////////////////////////
@@ -3588,6 +3611,12 @@
35883611
"attributes": ["horizontal"],
35893612
"layer0.tint":[0,150,136]
35903613
},
3614+
// progress bar
3615+
{
3616+
"class": "progress_gauge_control",
3617+
"settings": ["Seti_accent_red"],
3618+
"layer0.tint":[0,150,136]
3619+
},
35913620

35923621
// seablue
35933622
// ////////////////////////////////////////////////////////
@@ -3894,6 +3923,12 @@
38943923
"attributes": ["horizontal"],
38953924
"layer0.tint":[0,118,255]
38963925
},
3926+
// progress bar
3927+
{
3928+
"class": "progress_gauge_control",
3929+
"settings": ["Seti_accent_red"],
3930+
"layer0.tint":[0,118,255]
3931+
},
38973932

38983933
// general options
38993934
// ////////////////////////////////////////////////////////

messages.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,6 @@
6868
"14.2": "messages/14.2.txt",
6969
"15": "messages/15.txt",
7070
"16": "messages/16.txt",
71-
"17": "messages/17.txt"
71+
"17": "messages/17.txt",
72+
"17.1": "messages/17.1.txt"
7273
}

messages/17.1.txt

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
v17.1 (08-07-2017)
2+
-------------------
3+
4+
1- fix progress bar gauge coloring

0 commit comments

Comments
 (0)