Skip to content
This repository has been archived by the owner on Apr 15, 2020. It is now read-only.

Commit

Permalink
Fix code completion coloring
Browse files Browse the repository at this point in the history
  • Loading branch information
karelvuong committed Apr 16, 2015
1 parent 830dc19 commit 7107bdf
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 9 deletions.
21 changes: 13 additions & 8 deletions Primer Dark.sublime-theme
Original file line number Diff line number Diff line change
Expand Up @@ -979,57 +979,62 @@
{
"class": "popup_control",
"content_margin": [0,0],
"layer0.tint": [248, 248, 248], // 01
"layer0.tint": [45, 49, 57], // 01
"layer0.opacity": 1
},
{
"class": "auto_complete",
"row_padding": [4,4]
},
{
"c": "auto_complete_label",
"fg": [138, 138, 138, 255], // 03
"match_fg": [192, 197, 206, 255], // 05
"selected_fg": [51, 51, 51, 255], // 03
"selected_match_fg": [192, 197, 206, 255] // 05
"class": "auto_complete_label",
"fg": [101, 115, 126, 255],
"match_fg": [61, 119, 235],
"selected_fg": [193, 211, 247],
"selected_match_fg": [61, 119, 235]
},
// CUSTOM - Quick Panel Label
{
"class": "auto_complete_label",
"settings": ["theme_primer_tab_active_blue"],
"match_fg": [61, 119, 235],
"selected_match_fg": [61, 119, 235]
},
{
"class": "auto_complete_label",
"settings": ["theme_primer_tab_active_green"],
"match_fg": [136, 179, 121],
"selected_match_fg": [136, 179, 121]
},
{
"class": "auto_complete_label",
"settings": ["theme_primer_tab_active_red"],
"match_fg": [188, 110, 124],
"selected_match_fg": [188, 110, 124]
},
{
"class": "auto_complete_label",
"settings": ["theme_primer_tab_active_orange"],
"match_fg": [212, 154, 103],
"selected_match_fg": [212, 154, 103]
},
{
"class": "auto_complete_label",
"settings": ["theme_primer_tab_active_purple"],
"match_fg": [178, 126, 205],
"selected_match_fg": [178, 126, 205]
},
{
"class": "table_row",
// "layer0.texture": "",
"layer0.tint": [248, 248, 248], // 02
"layer0.tint": [45, 49, 57], // 02
"layer0.opacity": 0,
"layer0.inner_margin": [3,1]
},
{
"class": "table_row",
"attributes": ["selected"],
"layer0.tint": [255, 255, 255], // 02
"layer0.tint": [59, 64, 74], // 02
"layer0.opacity": 1
},

Expand Down
3 changes: 2 additions & 1 deletion messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
"1.1.2": "messages/1.1.2.txt",
"1.1.3": "messages/1.1.3.txt",
"1.1.4": "messages/1.1.4.txt",
"1.1.5": "messages/1.1.5.txt"
"1.1.5": "messages/1.1.5.txt",
"1.1.6": "messages/1.1.6.txt"
}
10 changes: 10 additions & 0 deletions messages/1.1.6.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# New in Primer 1.1.6

- Fixed code completion coloring (thanks @thecodechef!)

*Note: If you have any suggestions for improvements and fixes, please feel free to add issues at GitHub: https://github.com/karelvuong/st-primer/issues*

***


*Note: Don't forget to restart Sublime Text after activating the theme.*

0 comments on commit 7107bdf

Please sign in to comment.