How to change Sublime Text 2 selected tab color

后端 未结 7 1052
天命终不由人
天命终不由人 2020-12-23 20:12

I like the Sublime Text 2 default color scheme Monokai alot. The only problem is the tab colors, the selected tabs and the rest of the tabs all look the sam

7条回答
  •  借酒劲吻你
    2020-12-23 20:50

    For Sublime Text 3 users: As of the official Sublime Text official 3.0 update, this has changed just a little bit.

    This SO post in addition to some help from This Sublime Text Forum Post led me to add this code snippet to the "Packages/Theme - Default/Default.sublime-theme" or to "Packages/User/Default.sublime-theme"
    // Selected Tabs { "class": "tab_control", "attributes": ["selected"], "tint_modifier": [0, 255, 0, 40], //RGBA value - makes my selected tab a deep green "layer1.opacity": 1.0, },


    Here you can find more details on the Sublime Text 3 documentation site for themes

提交回复
热议问题